// Creates an email address link dynamically that spammers cannot trawl through.
function secureEmail ( name, domain, tld, region, label)
{
 var theString = "<a href=\"mailto:";
 theString += name;
 theString += "@";
 theString += domain;
 theString += ".";
 theString += tld;
 theString += ".";
 theString += region;
 theString += "\">";
 theString += label;
 theString += "</a>";
 //	alert(theString);
 document.write(theString);
}
