<!--


function ZoomImmagine(Immagine,Width,Height)
{ 
  Zoom=window.open(Immagine,"Zoom","width=" + Width + " height=" + Height + " menubar=no personalbar=no resizable=no scrollbars=no status=no toolbar=no");
  Zoom.focus();
  Zoom.resizeTo(Width+30,Height+55);
  Zoom.moveTo((screen.width - Width)/2,(screen.height - Height)/2);
}


//-->
