 //Prevent spambots from harvesting email addresses
 //DO NOT USE THE EMAIL ADDRESS AS NAME, 
 //if you want the e-mail adres to be printed set name to true
 //Usage xamples:
 //  TSW_writeEmail('user','fubar.com','Mr. user');
 //  TSW_writeEmail('user','fubar.com',true);
function tr_writeEmail(theUser,theDomain,theName) {
 if(theName===true) theName = theUser+'@'+theDomain; 
 document.write('<a href=\"mailto:'+theUser+'@'+theDomain+'\" class="">'+theName+'</a>');
}
