<!--


function openImageWindow(imageName,top,left,menubar,imageWidth,imageHeight,alt) {
newWindow = window.open("","newWindow","top="+top+",left="+left+",menubar="+menubar+",width="+imageWidth+",height="+imageHeight);
newWindow.document.open();
newWindow.document.write('<HTML><TITLE>'+alt+'</TITLE><BODY bgcolor="#FFFFFF" LEFTMARGIN="0" TOPMARGIN="0" MARGINHEIGHT="0" MARGINWIDTH="0" onBlur="self.close()">'); 
newWindow.document.write('<IMG SRC='+imageName+' WIDTH='+imageWidth+' HEIGHT='+imageHeight+' ALT='+alt+'>'); 
newWindow.document.write('</BODY></HTML>');
newWindow.document.close();
newWindow.focus();} 


var secondafinestra=null;
function apri(quella,opzioni)
{
if (secondafinestra != null)
if (!secondafinestra.closed)
secondafinestra.close();
secondafinestra = window.open(quella,"nuovafinestra",opzioni);
secondafinestra.focus();
}
//-->

