function EmailProtector(user, site){
//This is so webbots don't steal the email address and spam the address like crazy

	document.write('<a href=mailto:' + user + '@' + site + '\>' + user + '@' + site + '</a>');
}

