function waitPreloadPage() { //DOM
if (document.getElementById){
document.getElementById('prepage').style.visibility='hidden';
}else{
if (document.layers){ //NS4
document.prepage.visibility = 'hidden';
}
else { //IE4
document.all.prepage.style.visibility = 'hidden';
}
}
}


document.write("<DIV id='prepage' style='FONT-SIZE: 16px; LEFT: 0px; WIDTH: 100%; FONT-FAMILY: verdana;font-size:12px; POSITION: absolute; TOP: 0px; HEIGHT: 100%;'>")
document.write("<DIV width='100%' style='margin-top:5px' align='center'><FONT color='#000000'>Loading... Please wait!</FONT></DIV></DIV></DIV>");

 