function email(username) { document.write(username + '@' + 'vitaminc4' + '.' + 'com'); }
function email_link(username) {
  document.write('<a href="mailto:');
  email(username);
  document.write('">');
  email(username);
  document.write('</a>');
}