//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
//Examples:
//  TSW_writeEmail('user','fubar.com','Jeroen')
//  TSW_writeEmail('user','fubar.com',true)
    function TSW_writeEmail(theUser,theDomain,theName) {
        if(theName===true) theName = theUser+'@'+theDomain; 
        document.write('<a href=\"mailto:'+theUser+'@'+theDomain+'\">'+theName+'</a>');
    }