function openpopup(foto,name,width,height,testo) {
	newWindow = window.open("foto.htm","newWindow","width="+width+",height="+height+",left=20,top=20");
	newWindow.document.open();
		newWindow.document.write('<html><head><title>'+name+'</title></head><body leftmargin="0" topmargin="0" marginheight="0" marginwidth="0" bgcolor="#000000" onClick="self.close()">');  
		newWindow.document.write('<table width="'+width+'" border="0" cellspacing="0" cellpadding="0" align="center" height="'+height+'" >');
		newWindow.document.write('<tr><td><img src="'+foto+'" width='+width+' height='+height+' alt="Clicca per chiudere !" ></td></tr>'); 
		newWindow.document.write('</table></body></html>');
	newWindow.document.close();
	newWindow.focus();
}



