
  function em(acct,dom,tld) {
    document.write('<a href="mailto:' + acct + "@" + dom + "." + tld + '">' + acct + "@" + dom + "." + tld + '</a>');
  }

  var popwin;

  function popopen(title,width,height,content) {

    if ( !popwin || popwin.closed ) {
      popwin=window.open('','pophelp','width=' + width +',height=' +height + ',resizable=yes,scrollbars=yes,top=50,left=10');
    }

    popwin.document.clear();
    popwin.document.writeln('<html> <head> <title>' + title + '</title> </head>');
    popwin.document.writeln('<body style="font-size: 80%; font-family: Arial, Helvetica, sans-serif;">');
    popwin.document.writeln(content);
    popwin.document.writeln('</body> </html>');
    popwin.document.close();
    popwin.focus();
  }

  function popclose() {
    if (popwin && !popwin.closed) {
      popwin.close();
    }
  }
