// JavaScript Document
<!-- 
/* 
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() 
  
  // *******************************************************
  // This is where you will add images for the front page
  myimages[1]="front_page/pict1.jpg" 
  myimages[2]="front_page/pict2.jpg" 
  myimages[3]="front_page/pict3.jpg" 
  myimages[4]="front_page/pict4.jpg" 
  myimages[5]="front_page/pict5.jpg" 
  myimages[6]="front_page/pict6.jpg"
  // This is the end of the section where images are added.
  // *******************************************************
   
  var ry=Math.floor(Math.random()*myimages.length) 
 
  if (ry==0) 
     ry=1 
     document.write('<img src="'+myimages[ry]+'" border=0 width=389 height=280') 
} 

//-->