<!--
/*
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/random/RightSidebar01.gif"
  myimages[2]="/images/random/RightSidebar02.gif"
  myimages[3]="/images/random/RightSidebar03.gif"
  myimages[4]="/images/random/RightSidebar04.gif"
  myimages[5]="/images/random/RightSidebar05.gif"

  var ry=Math.floor(Math.random()*myimages.length)

  if (ry==0)
     ry=1
     document.write('<img src="'+myimages[ry]+'" border=0>')
}

function random_imglinkheader(){
  var myimages1=new Array()
  //specify random images below. You can have as many as you wish
  myimages1[1]="/images/random/2.gif"
  myimages1[2]="/images/random/3.gif"
  myimages1[3]="/images/random/4.gif"
  myimages1[4]="/images/random/5.gif"

  var ry1=Math.floor(Math.random()*myimages1.length)

  if (ry1==0)
     ry1=1
     document.write('<img border="0" src="'+myimages1[ry1]+'" width="1040" height="100">')
}
//-->