<!--function ApriFinestraImmagine(imageName,imageWidth,imageHeight,alt,posLeft,posTop,description,windowWidth,windowHeight) {	newWindow = window.open("","newWindow","width="+windowWidth+",height="+windowHeight+",left="+posLeft+",top="+posTop);	newWindow.document.open();	newWindow.document.write('<html><title>'+alt+'</title><body bgcolor="#FFFFFF" leftmargin="0" topmargin="0" marginheight="0" marginwidth="0" onClick="self.close()" onBlur="self.close()">'); 	newWindow.document.write('<table Valign="middle" cellpadding="0" cellspacing="18" border="0" align="center">');	newWindow.document.write('<tbody><tr><td valign="top" align="center">');    newWindow.document.write('<img src='+imageName+' width='+imageWidth+' height='+imageHeight+' alt='+alt+'>');	newWindow.document.write('<tr><td valign="top" align="center">');    newWindow.document.write('<div align=center><b><font face="Verdana, Arial, Helvetica, sans-serif" size="1" color="#FFFFFF" size="1"> '+description+'</font></b></div>');    newWindow.document.write('</tr></table>');	newWindow.document.write('</body></html>');	newWindow.document.close();	newWindow.focus();}//-->