<!--
function MailtoWhomever(username,domain,addresstext) {
if (addresstext == "") {
  document.write('<a href=\"mailto:' + username + '@' + domain + '\">'); 
  document.write(username + '@' + domain + '</a>');
} else {
  document.write('<a href=\"mailto:' + username + '@' + domain + '\">'); 
  document.write(addresstext + '</a>'); }
}
 -->