function random_imglink(){
var myimages=new Array()
//specify random images below. You can have as many as you wish
myimages[1]="http://edccomp.com/banner/agustus/atheros-5get1.png"
myimages[2]="http://edccomp.com/banner/agustus/hawe2-5get1.png"
myimages[3]="http://edccomp.com/banner/agustus/pisau.png"

//specify corresponding links below
var imagelinks=new Array()
imagelinks[1]="http://edccomp.com/mini-pci/219-atheros-ar5213-65mw-a-b-g-minipci.html"
imagelinks[2]="http://edccomp.com/access-point/29-hawk-ap-outdoor-unit-24-ghz-hawe2.html"
imagelinks[3]="http://www.edccomp.com"

var ry=Math.floor(Math.random()*myimages.length)
if (ry==0)
ry=1
document.write('<a href='+'"'+imagelinks[ry]+'"'+'><img src="'+myimages[ry]+'" border=0></a>')
}
random_imglink()
