var ExtWin;
ExtWin=null;

function ApriFoto(imagePath,alt,posLeft,posTop) {
	newWindow = window.open("","newWindow","left="+posLeft+",top="+posTop);
	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('}');
	newWindow.document.writeln('</script>');
	newWindow.document.writeln('</head>');
	newWindow.document.writeln('<body bgcolor="#FFFFFF" leftmargin="0" topmargin="0" marginheight="0" marginwidth="0">'); 
	newWindow.document.writeln('<img src=' + imagePath + ' name=foto alt=' + alt +' onLoad="javascript:centra();">'); 
	newWindow.document.writeln('</body></html>');
	newWindow.document.close();
	newWindow.focus();
}

function ApriFinestra(winname, str, w, h, l, t, scrollbars) {
	if (ExtWin == null) {
		ExtWin = window.open(str,winname,'scrollbars=' + scrollbars + ',resizable=no,width=' + w + ',height=' + h + ',left=' + l + ',top=' + t + ',status=yes,location=no,toolbar=no,dependent=true,hotkeys=false');
	}
	else {
		ExtWin.close();
		ExtWin = window.open(str,winname,'scrollbars=' + scrollbars + ',resizable=no,width=' + w + ',height=' + h + ',left=' + l + ',top=' + t + ',status=yes,location=no,toolbar=no,dependent=true,hotkeys=false');
	}
	ExtWin.focus();
}

