/* write to the page an email address that is hidden from spammers */
function makeaddr( userid, domain ) {
   var address = userid + "@" + domain;
   document.write( address );
   /*document.write( "<a style=\"text-decoration:none\" href=\"mailto:" + address + "\">" + address + "</a>" );*/
   return;
}

/* write to the page an email link that is hidden from spammers */
function makemailto( userid, domain, message ) {
   var address = userid + "@" + domain;
   document.write( message );
   /*document.write( "<a style=\"text-decoration:none\" href=\"mailto:" + address + "\">" + message + "</a>" );*/
   return;
}

