function SpamGuard(name, domain, tld) {
    var spamguard = 'mailto:' + name + '@' + domain + '.' + tld;
    document.location.href = spamguard;
}

