<!--
/*
Random Image Link Script
By Website Abstraction (http://www.wsabstract.com)
and Java-scripts.net (http://www.java-scripts.net)
*/

function random_imglink(){
  var myimages=new Array()
  //specify random images below. You can have as many as you wish
  myimages[1]="../images/top02a.jpg"
  myimages[2]="../images/top02b.jpg"
  myimages[3]="../images/top02c.jpg"
  myimages[4]="../images/top02d.jpg"
  myimages[5]="../images/top02e.jpg"
  myimages[6]="../images/top02f.jpg"
  myimages[7]="../images/top02g.jpg"

  //specify corresponding links below
  var imagelinks=new Array()
  imagelinks[1]="../default_eng.asp"
  imagelinks[2]="../default_eng.asp"
  imagelinks[3]="../default_eng.asp"
  imagelinks[4]="../default_eng.asp"
  imagelinks[5]="../default_eng.asp"
  imagelinks[6]="../default_eng.asp"
  imagelinks[7]="default_eng.asp"

  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()
//-->
