 function PopupCenterPage(indirizzo,nome,larghezza,altezza) {
   var w = larghezza;
   var h = altezza;
   var l = Math.floor((screen.width-w)/2);
   var t = Math.floor((screen.height-h)/2);
      calWin = window.open(indirizzo,nome,"width=" + w + ",height=" + h + ",top=" + t + ",left=" + l+',scrollbars=yes,status=no,location=no,toolbar=no,menubar=yes, resizable=yes');
	  calWin.focus();
 }
 function PopupCenterPage2(indirizzo,nome,larghezza,altezza) {
   var w = larghezza;
   var h = altezza;
   var l = Math.floor((screen.width-w)/2);
   var t = Math.floor((screen.height-h)/2);
      calWin = window.open(indirizzo,nome,"width=" + w + ",height=" + h + ",top=" + t + ",left=" + l+',scrollbars=yes,status=no,location=yes,toolbar=yes,menubar=yes, resizable=yes');
	  calWin.focus();
 }
 function PopupLinkEsterno(indirizzo,nome,diffx,diffy) {
   //alert(screen.width + " ciao " + screen.height);
   var w = screen.width-diffx;
   var h = screen.height-diffy;
   var l = 0;
   var t = 0;
      calWin = window.open(indirizzo,nome,"width=" + w + ",height=" + h + ",top=" + t + ",left=" + l+',scrollbars=yes,status=no,location=yes,toolbar=yes,menubar=yes, resizable=yes');
	  calWin.focus();
 }

