function DynaWin(url, h, w, l, t) {
	poph = + h + 80
	popw = + w + 30
	disp = window.open("","pop","height=" + poph + ",width=" + popw + ",left=" + l + ",top=" + t + "");
	content = '<HTML>';
	content += '<TITLE>Foto ingrandita</TITLE>';
	content += '</HEAD>';
	content += '<BODY BGCOLOR="#ff8c24" onBlur="self.close()">';
	content += '<P ALIGN="CENTER"><img border="1" style="border-color: white" src="images/' + url + '" height="' + h + '" width="' + w + '"></P>';
	content += '<DIV ALIGN="CENTER"><FORM><INPUT type="button" value="&nbsp;Chiudi questa finestra&nbsp;" style="font-size: 12px; font-family: Trebuchet MS, Lucida Grande, Verdana, sans-serif; color: #660000; background:#F8F2DC"; onClick="self.close()"></FORM></DIV>';
	content += '</BODY></HTML>';
	disp.document.write(content);
	disp.document.close();
}
