 function apri(url) {
   var w = 800;
   var h = 600;
   var l = Math.floor((screen.width-w)/2);
   var t = Math.floor((screen.height-h)/2);
    newin = window.open(url,'titolo','scrollbars=no,resizable=yes, width=' + w + ',height=' + h + ',top=' + t + ',left=' + l +',status=no,location=no,toolbar=no');
 
   pagina.document.open ();
   pagina.document.write
   ('<head><title>Ingrandimento</title></head><body LEFTMARGIN=0 TOPMARGIN=0 MARGINWIDTH=0 MARGINHEIGHT=0><A HREF="javascript:window.close()"><img src="'+apri+'" alt="Clicca sull\'immagine per chiudere la finestra" border="0"></A></BODY>');
   pagina.document.close();
   pagina.focus();
   }
