function email(name, domain, tld) {
    var text
    text = name + "@" + domain + "." + tld;
    document.location.href = "mailto:" + text;
}
