function loadEmail(user, domain, text) {
	document.write('<a href=\"mailto:'+user+'@'+domain+'\" rel=\"nofollow\">');
	if (text == "")
		document.write(user+'@'+domain+'<\/a>');
	else
		document.write(text+'<\/a>');
}

