      function NewPopupWindow(URL,NAME,WIDTH,HEIGHT) {
        var TOP = (screen.width-WIDTH)/2;
        var LEFT = (screen.height-HEIGHT)/2;
        oNewWin = window.open(URL,"_blank","width="+String(WIDTH)+
                  ",height="+String(HEIGHT)+',top='+String(TOP)+',left='+String(LEFT)+
                  ",dependent=no,location=0,directories=0,scrollbars=yes,statusbar=no,resizable=no");
        oNewWin.focus();
      }

