<!--
function Finestra(img,dim) {
// In futuro si puņ fare una modifica in modo tale che se viene 
// settato 'menu=0' significa che il frame del menu non deve essere caricato

win=null;

if (navigator.appName == "Microsoft Internet Explorer")
	{		
		br="ie";
		parametri="width=470,height=530,left=50,top=10,location=no,alwaysRaised=yes,z-lock=yes";		
	}
else 
	{	
		br="ne";
		parametri="innerWidth=470,innerHeight=530,screenX=50,screenY=10,location=no,alwaysRaised=yes,z-lock=yes";
	}

win = window.open('', 'monitor', parametri);
doc = win.document;
testo = "<HTML><HEAD><title>Infissi D'Antonio</title>\n";

var bIE = navigator.appName.indexOf("Microsoft")!=-1;
var dimScreenX=screen.availWidth;
if(bIE){	
	if (dimScreenX<=800) 
		{testo+= "<LINK HREF="+"\""+"../includes/styleIE800.css"+"\""+" REL="+"\""+"stylesheet"+"\""+" TYPE="+"\""+"text/css"+"\""+">";}
	else 
		{testo+= "<LINK HREF="+"\""+"../includes/styleIE1024.css"+"\""+" REL="+"\""+"stylesheet"+"\""+" TYPE="+"\""+"text/css"+"\""+">";}
	}
else{
	if (dimScreenX<=800) 
		{testo+= "<LINK HREF="+"\""+"../includes/styleNS800.css"+"\""+" REL="+"\""+"stylesheet"+"\""+" TYPE="+"\""+"text/css"+"\""+">";}
	else 
		{testo+= "<LINK HREF="+"\""+"../includes/styleNS1024.css"+"\""+" REL="+"\""+"stylesheet"+"\""+" TYPE="+"\""+"text/css"+"\""+">";}
	}
	
if(bIE)
		{	// Costruzione della finestra con Internet Explorer
		testo += "</HEAD>\n";
		testo+= "<BODY leftmargin=3 rightmargin=5 topmargin=3 bottommargin=0>";
		testo+= "<TABLE border=0 width=100% height=100% cellpadding=0 cellspacing=0>";
		testo+= " <TR><TD valign=top align=center height=25 class=titolopag>";
		testo+= " Dettaglio: ";
		testo+= " </TD></TR>";
		testo+= " <TR><TD valign=top align=center height=40 class=titolopag>";
		testo+= " <IMG name=immagine src="+"\""+ img +"\""+"> ";
		testo+= " </TD></TR>";
		testo+= " <TR><TD valign=middle align=center height=30>";
		testo+= " 	<INPUT TYPE=button value="+"\""+"Chiudi la finestra"+"\""+"  onclick=self.close()>";
		testo+= " </TD></TR>";
		testo+= "</TABLE>";
		}
	else
		{ // Costruzione della finestra con Netscape
		testo += "</HEAD>\n";
		testo+= "<BODY leftmargin=3 rightmargin=5 topmargin=3 bottommargin=0>";
		testo+= "<TABLE border=0 width=100% height=100% cellpadding=0 cellspacing=0>";
		testo+= " <TR><TD valign=top align=center height=25 class=titolopag>";
		testo+= " Dettaglio: ";
		testo+= " </TD></TR>";
		testo+= " <TR><TD valign=top align=center height=40 class=titolopag>";
		testo+= " <IMG name=immagine src="+"\""+ img +"\""+"> ";
		testo+= " </TD></TR>";
		testo+= " <TR><TD valign=middle align=center height=30>";
		testo+= " 	<INPUT TYPE=button value="+"\""+"Chiudi la finestra"+"\""+"  onclick=self.close()>";
		testo+= " </TD></TR>";
		testo+= "</TABLE>";
		}	

	testo+= "</BODY></HTML>";
	doc.open("text/html", "replace");
	doc.write(testo);
	doc.close();
}
//-->