
<!--
/*
Random Image Link Script
By Website Abstraction (http://www.wsabstract.com)
and Java-scripts.net (http://www.java-scripts.net)
*/

  function random_imglink_big(){
  var myimages2=new Array()
  //specify random images below. You can have as many as you wish
  myimages2[1]="LibertyLargeAd1.jpg"
  myimages2[2]="HVSlargead.jpg"
  myimages2[3]="WhalersLargeAd.jpg"
  myimages2[4]="PCSLargePromo.jpg"
  
  //specify corresponding links below
  var imagelinks2=new Array()
  imagelinks2[1]="http://www.boaa.com"
  imagelinks2[2]="http://www.hvsports.com"
  imagelinks2[3]="http://www.plymouthwhalers.com"
  imagelinks2[4]="http://plymouthcantonsports.com/PCSpromo.html"



  now2 = new Date();
  i2 =0;
  while (Math.floor(1+Math.random(seed)*(myimages2.length-1))*100 >i2) 
	i2++
  var seed = now2.getSeconds();
  var ry2=Math.floor(1+Math.random(seed)*(myimages2.length-1))

  
  document.write('<a href='+'"'+imagelinks2[ry2]+'"'+'><img src="images/'+myimages2[ry2]+'" border=0 alt="'+ry2 +'"></a>')
}


//-->

