//hide user emails on site so they can't be farmed by spiders
function hideEmail(domain, user, strDisplay) {
	document.write('<a href=\"mailto:' + user + '@' + domain + '\">');
	if (strDisplay == null || strDisplay == '') {
		document.write(user + '@' + domain + '</a>');
	}
	else {
		document.write(strDisplay + '</a>');
	}
}