function visualizzaFotoGrande(imageName,imageWidth,imageHeight,alt,posLeft,posTop) {
	newWindow = window.open
	("","newWindow", "width=" + "650" + ",height=" + "650" + ",left=" + "187" + ",top=" + "60");
	
	newWindow.document.open(); 

	newWindow.document.write('<html><link rel="stylesheet" type="text/css" href="centra_foto.css"><title>'+"Emanuele Pandolfini"+'</title><body bgcolor="#FFDDBB" leftmargin="0" 	topmargin="0" 	marginheight="0" marginwidth="0" onBlur="self.close()">'); 
	
	newWindow.document.write('<img src='+imageName+'>'); 
	newWindow.document.write('</body></html>');
	newWindow.document.close(); 
	newWindow.focus(); 
}

