// JavaScript Document
function getAdress(name, domain)
{
  if(name.length > 1 || domain.length > 3)
  {
    document.write("<a href=\"mailto:");
    document.write(name);
    document.write("@");
    document.write(domain);
    document.write("\">");
    document.write(name);
    document.write("(at)");
    document.write(domain);
    document.write("<\/a>");
  }
}
