// ----- Variabili di personalizzazione -----
var attesa="<FONT FACE='verdana, arial, helvetica' SIZE='+2'><p align='center'>L o a d i n g . . .</FONT><br><br><FONT FACE='verdana, arial, helvetica'>P&nbsp;L&nbsp;E&nbsp;A&nbsp;S&nbsp;E&nbsp;&nbsp;&nbsp;&nbsp;W&nbsp;A&nbsp;I&nbsp;T</FONT><br><br><img border='0' src='images/loading.gif' width='23' height='23'></p>";
var colore="#161F16";
// ----- Fine variabili di personalizzazione -----

if (document.layers)
	document.write("<LAYER NAME='loading' position=absolute z-index=0 top=0 left=0 width="+window.innerWidth+" height="+window.innerHeight+" bgColor="+colore+" visibility=show'><TABLE BORDER=0 WIDTH=100% HEIGHT=100% BGCOLOR="+colore+"><TR><TD ALIGN=center VALIGN=middle>"+attesa+"</TD></TR></TABLE></LAYER>");
	else
	document.write("<DIV ID='loading' STYLE='position:absolute;z-index:0;top:0;left:0;width:99,0%;height:"+eval(document.all?document.body.clientHeight:window.innerHeight)+";layer-background-color:"+colore+";background:"+colore+";visibility:visible'><TABLE BORDER=0 WIDTH=100% HEIGHT=100% BGCOLOR="+colore+"><TR><TD ALIGN=center VALIGN=middle>"+attesa+"</TD></TR></TABLE></DIV>");

function loaded(){
	if (document.layers) // NN 4
		document.layers.loading.visibility="hide";
		else if (document.getElementById) // NN6, OP e IE5+
			document.getElementById('loading').style.visibility="hidden";
			else // IE4
				document.all.loading.style.visibility="hidden";
	}