	function PopupImage(imageName, ww, wh) { 

		myNewWindow = window.open('', 'Zoom','width=' + eval(ww + 18) +',height=' + eval(wh + 30) + ',toolbar=0,location=0,directories=0,status=0,menuBar=0,scrollBars=0,resizable=0'); 
		myNewWindow.document.write("<HTML><HEAD><TITLE>Blue-Green  - Zoom</TITLE></HEAD>"); 
		myNewWindow.document.write("<BODY leftmargin='0' topmargin='12' marginwidth='0' marginheight='0' 			bgcolor='#f3f3f3'>"); 
		myNewWindow.document.write("<p align='center'><IMG SRC='" + imageName + "'><BR>"); 
		myNewWindow.document.write("<a href='javascript:self.close();'><font color='#000080' face='Verdana, Arial, 		sans-serif' size='2'>Chiudi</font></a></p>") 
		myNewWindow.document.write("</BODY></HTML>"); 
		myNewWindow.document.close(); 
		myNewWindow.focus(); 

	}
//-->

