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.body.style.overflowY = 'scroll';
}

document.write("<div id='prepage' style='position:absolute; left:0px; top:0px; background:#FFFFFF url(/foto/sfondo.jpg) no-repeat fixed center center; layer-background-color:#FFFFFF ; height:100%; width:101%'>");
document.write("<table width=100% height='100%'>");
document.write("<tr>");
document.write("<td align='center' valign='middle' style='font-size: large; font-weight: bold; color: #993300; font-family: Georgia'>Caricamento in corso... ...Attendere prego!<br><img src='/ita/images/loadingAnimation.gif'></td>");
document.write("</tr>");
document.write("</table>");
document.body.style.overflowY = 'hidden';
document.write("</div>");

// document.onload = waitPreloadPage();