/*
*	This function is to be used to 'cloak' email addresses from spammers
*	by passing the appropriate parts of the email address along with the 
*	'linktext', which is the text to be set as the link (usually a name)
*	Created by Kyle Klein 7/2008
*/

function writeEmail(username, hostname, domain, linktext){
document.write("<a href=" + "mail" + "to:" + username +
"@" + hostname + "." + domain + ">" + linktext + "</a>")
}


