function zoomIt(imago, msg, xwidth, yheight, button){
	// Set up Page Colors & Table
	if (!button) button = 'chiudi';
	if (!xwidth) xwidth = 490;  
	if (!yheight) yheight = 350;
	var s1 = "<title>Vanoi - il Cuore Verde del Trentino</title>" +    
	"<body onBlur='self.focus()' bgcolor='#ffffff' topmargin='2'><div align='center'><table border='0'><tr>" +        
	"<td valign='top'>"+        
	"<p style='font-size:11pt; font-family: Arial, Helvetica, sans-serif;'>";    
	var s2 = "<br /><img src="+imago+" alt='' border='0' />" +
	"</p></td></tr><tr>" +    
	"<td valign='top' align='right'>" +    
	"<form><input type='button' style='background-color:white;' value='";
	var s3 = "' onClick='self.close()' />"  +    
	"</form></td></tr></table></div></body>"; 
	var xxl = "height="+yheight+",width="+xwidth+",scrollbars=no";
	popup = window.open("","popDialog",xxl);  
	popup.document.write(s1+msg+s2+button+s3) ;
	popup.document.close();
}
