<!--
/*
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"

  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/header-14.gif"
  myimages1[2]="/images/random/header-14.gif"
  myimages1[3]="/images/random/header-14.gif"
  myimages1[4]="images/random/header-14.gif"

  var ry1=Math.floor(Math.random()*myimages1.length)

  if (ry1==0)
     ry1=1
     document.write('<table border="0" cellpadding="0" style="border-collapse: collapse" width="100%" id="table24" background="'+myimages1[ry1]+'">')
}
//-->