//mangle an email address so spam bots cannot harvets addresses
function mangle(user,host){
	return("<a class='textWhite' href='" + "mail" + "to:" + user + "@" + host+ "'>" + user + "@" + host + "</a>");
}
