function MM_reloadPage(init) {  //reloads the window if Nav4 resized
  if (init==true) with (navigator) 
  {
  	if ((appName=="Netscape")&&(parseInt(appVersion)==4)) 
    {
		document.MM_pgW=innerWidth; document.MM_pgH=innerHeight; onresize=MM_reloadPage; 
	}
  }
  else 
  if (innerWidth!=document.MM_pgW || innerHeight!=document.MM_pgH) 
  	location.reload();
}

/*
Random Image Script- By JavaScript Kit (http://www.javascriptkit.com) 
Over 400+ free JavaScripts here!
Keep this notice intact please
*/
function random_imglink(){             
	var myimages=new Array();
	//specify random images below. You can have as many as you wish             
	myimages[1]="/assets/images/spl1.jpg";          
	myimages[2]="/assets/images/spl2.jpg";            
	myimages[3]="/assets/images/spl3.jpg";             
	myimages[4]="/assets/images/spl4.jpg";
	var ry=Math.floor(Math.random()*myimages.length);
	if (ry==0) ry=1;
	document.write('<img src="'+myimages[ry]+'" border="0">');
}