var popup="";

function apriPOPUP(url,width,height)
{ 
 if (popup!="")
 {
 popup.close();
 } 
var centX=screen.availWidth/2-width/2;
var centY=screen.availHeight/2-height/2;
popup=window.open(url,"popup","resizable=no,scrollbars=no,height="+height+",width="+width+",location=no,menubar=no,screenX=0,screenY=0,status=no,toolbar=no,top="+centY+",left="+centX);
  popup.document.write('<html>\n<head>\n<title>Immagine Grande</title>\n</head>\n<body topmargin=0 leftmargin=0 bgcolor="#FFFFFF" text="#000000" link="#000000" vlink="#000000" alink="#000000" onload="preloadImages()">\n<a href="javascript:close()"><img src="'+url+'" border="0" alt="Clicca per chiudere"></a><br>\n</body>\n</html>\n');
  popup.focus();
}