function email(name, domain, tld)
{
s = name + "@" + domain + "." + tld;
document.write("<a href=\"mailto:" + s + "\">" + s + "</a>");
}
