// Funzioni JS implementate da ROBY deoo ROBMAN

<!--
function ApriFinestra(imagePath,alt,posLeft,posTop) {
	newWindow = window.open("","newWindow","left="+posLeft+",top="+posTop+",screenX="+posLeft+",screenY="+posTop+",scrollbars=no,resizable=no,width=400,height=250");
	newWindow.document.open();
	newWindow.document.writeln('<html><title>'+alt+'</title>');
	newWindow.document.writeln('<head>');
	newWindow.document.writeln('<script language="javascript"> ');
	newWindow.document.writeln('function centra() {');
	newWindow.document.writeln('var Xpos;');
	newWindow.document.writeln('var Ypos;');
	newWindow.document.writeln("window.resizeTo(document.images['foto'].width,document.images['foto'].height + 28);"); 
	newWindow.document.writeln('Xpos=(screen.width-document.images["foto"].width)/2;');
	newWindow.document.writeln('Ypos=(screen.height-document.images["foto"].height)/2;');
	//newWindow.document.writeln('window.moveTo(Xpos,Ypos);');


	newWindow.document.writeln('isNS4 = (document.layers) ? true : false;');
	newWindow.document.writeln('isIE4 = (document.all && !document.getElementById) ? true : false;');
	newWindow.document.writeln('isIE5 = (document.all && document.getElementById) ? true : false;');
	newWindow.document.writeln('isNS6 = (!document.all && document.getElementById) ? true : false;');
	
	newWindow.document.writeln('if (isNS4) {');
		newWindow.document.writeln('obj = document.layers["IMG"];');
	newWindow.document.writeln('}');
	newWindow.document.writeln('else if (isIE4) {');
		newWindow.document.writeln('obj = document.all["IMG"];');
	newWindow.document.writeln('}');
	newWindow.document.writeln('else if (isIE5 || isNS6) {');
		newWindow.document.writeln('obj = document.getElementById("IMG");');
	newWindow.document.writeln('}');
    
	newWindow.document.writeln('obj.style.visibility = "visible";');


	newWindow.document.writeln('}');
	newWindow.document.writeln('</script>');
	newWindow.document.writeln('<link rel="stylesheet" href="stili/default.css" type="text/css">');
	newWindow.document.writeln('</head>');

	newWindow.document.writeln('<body bgcolor="#FFFFFF" leftmargin="0" topmargin="0" marginheight="0" marginwidth="0">'); 
	newWindow.document.writeln('<div id="TEXT" style="visibility:visible; position:absolute; left:0px; top:0px; z-index:1; background-color: transparent; layer-background-color: transparent; border: none; align: center;">'); 
	newWindow.document.writeln('<br><br>'); 
	newWindow.document.writeln('<font class="eng">loading...</font>'); 
	newWindow.document.writeln('</div>'); 
	newWindow.document.writeln('<div id="IMG" style="visibility:hidden; position:absolute; left:0px; top:0px; z-index:1; background-color: transparent; layer-background-color: transparent; border: none">'); 
	newWindow.document.writeln('<img src=' + imagePath + ' name=foto alt=' + alt +' onLoad="javascript:centra();">'); 
	newWindow.document.writeln('</div>'); 
	newWindow.document.writeln('</body></html>');

	newWindow.document.close();
	newWindow.focus();
}
//-->
