// Robot-safe e-mail address handling
function nospam(name, domain)
{
	document.location = "mailto:" + name + "@" + domain;
}


