<!--
    // Creo lo script per l'apertura del popup
	if(navigator.appName=="Microsoft Internet Explorer")
	{
    function ApriImmagini(file)
    {
      var prop = "top=400, left=400"; // Altre proprietà... eccetto width ed height!
      window.open(file, null, prop);
    }
	}
	if(navigator.appName=="Netscape")
	{
	function ApriImmagini(file)
    {
      var prop = "top=400, left=400, resizable=no"; // Altre proprietà... eccetto width ed height!
      window.open(file, null, prop);
    }
	
	}
   //-->



