function email(username) {
  return username + '&#064;' + '&#115;&#116;&#111;&#114;&#101;&#102;&#114;&#111;&#110;&#116;&#097;&#110;&#100;&#115;&#116;&#117;&#100;&#105;&#111;' + '.' + 'com';
}

function writeEmailOpener(username) {
  document.write('<a href="mailto:' + email(username) + '">');
}

function writeEmailLink(username) {
  writeEmailOpener(username);
  document.write(email(username));
  document.write('</a>');
}
