function writeEmail(username, domain)
{
  document.write("<a href='mailto:"+username+"@"+domain+"'>"+username+"@"+domain+"</a>");
}

function writeEmailName(username, domain, name)
{
  document.write("<a href='mailto:"+username+"@"+domain+"'>"+name+"</a>");
}
