<!--
function random_imglink(){
  var myimages=new Array()

  myimages[1]="random/img01.jpg"
  myimages[2]="random/img02.jpg"
  myimages[3]="random/img03.jpg"
  myimages[4]="random/img04.jpg"
  myimages[5]="random/img05.jpg"
  myimages[6]="random/img06.jpg"
  myimages[7]="random/img07.jpg"
  myimages[8]="random/img08.jpg"
  myimages[9]="random/img09.jpg"
  myimages[10]="random/img10.jpg"
  myimages[11]="random/img11.jpg"
  myimages[12]="random/img12.jpg"
  myimages[13]="random/img13.jpg"
  myimages[14]="random/img14.jpg"
  myimages[15]="random/img15.jpg"

  var ry=Math.floor(Math.random()*myimages.length)

  if (ry==0)
     ry=1
     document.write('<img src="'+myimages[ry]+'" border=0></a>')
}

  random_imglink()
//-->