<!--
// function to confuse email address bots
function writeEmailLink(user, domain)
{
	var email = user + "@" + domain;
	
	document.write("<a href=\"mailto:" + email + "\">");
 	document.write(email);
	document.write("</a>");
}
//-->