function popup(wname,str,sb,wd,hg) {
         /* Funzione finestra PopUp con centratura
           str: nome della pagina da aprire
           sb: scroll bar (si/no)
           wd: larghezza in pixel
           hg: altezza in pixel
		   
		   javascript:popup('nomeFinestra','nomefile','scroll',650,555);
        */
   if (document.all)
   {
      var x = window.screenLeft;
      var y = window.screenTop;
      var w = window.document.body.offsetWidth;
      var h = window.document.body.offsetHeight;
      }
      else
      {
      var x = window.screenX;
      var y = window.screenY;
      var w = window.outerWidth;
      var h = window.outerHeight;
   }
  var cntx = x + Math.round((w - wd) / 2);
  var cnty = y + Math.round((h - hg) / 2);
  
  //this.window.name = 'principale';
  
  searchWin = window.open(str,wname,'scrollbars=' + sb + ',resizable=no,left=' + cntx + ',top=' + cnty + ',width=' + wd + ',height=' + hg +',status=no,location=no,toolbar=no,menubar=no,directories=no');
}
