
 function intro()
 {
	
	var myimages=new Array()
  //specify random images below. You can have as many as you wish
  myimages[1]="splash1.html"
  //myimages[2]="splash2.html"
 

  

  var ry=Math.floor(Math.random()*myimages.length)

  if (ry==0)
     ry=1
	locationJump = myimages[ry];
	windowCaption = "";
 	windowWidth = 635;
 	windowHeight = 550;	
 	GB_showCenter(windowCaption,locationJump,windowHeight,windowWidth);
 }
 
