   function NewWindow(mypage, myname, w, h, myurl) {
      var winl = (screen.width - w) / 2;
      var wint = (screen.height - h) / 2;
      winprops = 'height='+h+',width='+w+',top='+wint+',left='+winl+',scrollbars=yes, resizable, toolbar=no, status=yes';
      win1 = window.open(mypage, myname, winprops)
      win1.location=myurl;
   }
   function NewWindow2(mypage, myname, w, h, contents) {
      var winl = (screen.width - w) / 4;
      var wint = (screen.height - h) / 4;
      winprops = 'height='+h+',width='+w+',top='+wint+',left='+winl;
      win2 = window.open(mypage, myname, winprops)
      win2.document.close();
      win2.focus();
      win2.document.writeln(contents);
   }
   function NewWindowWithBars(mypage, myname, w, h, myurl) {
      var winl = (screen.width - w) / 4;
      var wint = (screen.height - h) / 4;
      winprops = 'height='+h+',width='+w+',top='+wint+',left='+winl+',scrollbars=yes, resizable, menubar=yes, toolbar=yes, status=yes';
      win1 = window.open(mypage, myname, winprops)
      win1.location=myurl;
   }
   function MakeBSCMail(e1) {
       document.write("<a href='mail"+ "to:" + e1 + "@" + "bsc-eoc." + "org'>" + e1 + "@" + "bsc-eoc." + "org</a>");
   }
   function MakeEMail(e1,e2) {
       document.write("<a href='mail"+ "to:" + e1 + "@" + e2 + ">" + e1 + "@" + e2 + "</a>");
   }

