
var Mailme = "mail" + "to:";
function buildMailto(name, domain)
{
	document.write('<a href="');
	document.write(Mailme+name+'@'+domain);
	document.write('">');
}

