
/*
mailto replaces the mailto:
anchor link and prevents
spambots harvesting the 
address.
*/

function mailto(name, domain)
{
 location.href = "mailto:" + ((arguments.length==2) ? (name + "@" + domain) : name);
}