function buildAddress( email )
{
	return "mailto:" + email.replace("_-_at_-_", "@").replace("--dot--", ".").replace("user", "michael").replace("domain","mccoylegal");
}

function mailto( email )
{
	document.location.href = buildAddress(email);
}