
function email(recipient, host, subject) {
	var email = '<a href="mailto:' + recipient + '@' + host + '?subject=' + subject +'" class="email">' + recipient + '@' + host + '</a>';
	document.write(email);
}	
	


function email_anchor(recipient, host, subject, anchorText) {
	var email = '<a href="mailto:' + recipient + '@' + host + '?subject=' + subject +'" class="email">' + anchorText + '</a>';
	document.write(email);
}	
	
	
	
function email_stephano(recipient, host, subject, FirstName) {
	
/*	var anchorText = "Email " + FirstName + " at ";
	
	
	var anchorText += recipient + '@' + host;
	*/
	
		var anchorText = "Email " + FirstName + " at " + recipient + '@' + host;
	
	var email = '<a href="mailto:' + recipient + '@' + host + '?subject=' + subject +'" class="email">' + anchorText + '</a>';
	document.write(email);
}		

