nvm, got it ^^
Code:
<html><head>
<script language="JavaScript">
function clearPreloadPage()
{
if (document.getElementById){
document.getElementById('prepage').style.visibility='hidden';
}
else{
if (document.layers){ //NS
document.prepage.visibility = 'hidden';
}
else { //IE
document.all.prepage.style.visibility = 'hidden';
}
}
} //end function
</script>
</head>
<body bgcolor=#FFFFFF onLoad="clearPreloadPage();">
<div id="prepage" style="position:absolute; font-family:arial; font-size:16; left:0px;
top:0px; background-color:white; layer-background-color:white; height:100%; width:100%;">
<table width=100%><tr><td>Put an animated-gif here, change the anamation speed to fit your
page</td></tr></table>
</div>
...Page content goes here...
</body>
<html>
Bookmarks