
<!--Step1: Paste this in opening body tag -->  onload="Splash()"

<!--Step2: Paste script in body -->


<script language="JavaScript">
<!-- Splash Intro Script by kurt.grigg@virgin.net

Destination='#'; //The page you want to load after this!(eg; blahblah.html)

//Your messages below, add as many as needed, make sure they're numbers are in order! 
Messages=new Array()
Messages[0]="This is an intro splash script!";
Messages[1]="What's an intro splash?";
Messages[2]="Basically, it's a pre site introduction page...";
Messages[3]="pointing out the \"must see\" features your visitors are...";
Messages[4]="about to marvel at in the following website extravaganza.";
Messages[5]="When finished, the first page of said site is automatically loaded."; 
Messages[6]="What do I have to do to use it?";
Messages[7]="Type the name/URL of the page you want to load into the Destination variable.";
Messages[8]="Replace the words your seeing now with your own.";
Messages[9]="Choose the font, font size and colour you want to use.";
Messages[10]="Choose the amount of time you want each message to last.";
Messages[11]="Then name the page with this script to \"index.html\"...";
Messages[12]="remembering to change your original \"index.html\" to something else.";
Messages[13]="That's it, you're done.";


//Choose font colours, size etc.!
FntFace='Arial';
FntColour='ffffff';
FntSize='4';
Speed=6000;//Message speed!-1000=1 second, 2000=2 seconds etc.

//Nothing needs altering below here!
count=-1;
move=1;
if (document.all||document.getElementById)
document.write('<div id="msg" style="position:absolute;top:0px;width:98.5%;text-align:center"></div>');
if (document.layers)
document.write('<layer name=nmsg top=0></layer>');
function Splash(){
TMR=setTimeout('Splash()',Speed);
if (count != Messages.length-1)
count=count+move;
else
{window.location.href=Destination;clearTimeout(TMR)}
if (document.all||document.getElementById){
var D=(document.all)?msg:document.getElementById("msg");
D.innerHTML='<font face='+FntFace+' size='+FntSize+' color=#'+FntColour+'>'+Messages[count]+'</font>';
D.style.top=(document.all)?document.body.clientHeight/2:window.innerHeight/2;
}
if (document.layers){
document.layers.nmsg.top=window.innerHeight/2;  
document.layers.nmsg.document.open();
document.layers.nmsg.document.write('<center><font face='+FntFace+' size='+FntSize+' color='+FntColour+'>'+Messages[count]+'</font></center>');
document.layers.nmsg.document.close();
}
}
//-->
</script>


