// Pop up a screen to display the page at a specified URL
function PopUp(URL) {
     var X = (screen.width - 650) / 2;
     var Y = (screen.height - 475) / 2;
     open(URL, "POP", "width=500,height=400,scrollbars=yes,resizable=yes,screenX=" + X + ",screenY=" + Y);
}

// This function creates an email link
function EmailLink(EmailName) {
     var Names = ['email us', 'webmaster'];
		 var Emails = ["mailto:info.bcc@greaterbaltimorebahais.org",
                   "mailto:webmaster.bcc@greaterbaltimorebahais.org"];
     var i;
		 
     for (i=0;i<Names.length;i++) {
          if (Names[i]==EmailName) {
               // Build numbered text for current row
               document.write("<A HREF='" + Emails[i] + "'>" + EmailName + "</A>");
          }
     }
}
