function nomailto(name, domain) {
	var one, two, three;
	one = "<a href='mai";
	one += "lto:";	
	two = name;
	two += "&#064;";
	three = domain;	
	three += "'>";	
	document.write(one+two+three);
}
function endnomailto() {
	document.write("</a>");
}
