/*
mailto replaces the mailto:
anchor link and prevents
spambots harvesting the
address.
*/

function mailto(name, domain, tld, subject){
location.href = "mailto:" + name + "@" + domain + "." + tld + ((subject)?"?subject="+subject:"");
}
