// Michael Griffiths Mar 2001
// No static mailto tag but Build email link on the fly
//... This is so robots/spiders can't read our email addr and then junk mail us (hopefully)!
//... Unfortunately, older browsers will not be able to build link, that's why 
//... we use an image to display email addr so that people (not robots ha ha!) can read it 

// This is how to call this script for HTML in your page:-
//... <SCRIPT language="JavaScript1.1" SRC="scripts/emailaddr.js"></SCRIPT>

function displayemailaddr()
{
 var emailaddr;
 var hottext="e-mail the centre now";
   emailaddr = 'mai';
   emailaddr = emailaddr + 'lto:st-george@';
   emailaddr = emailaddr + 'multi-therapy.co.uk';
   document.write(hottext.link(emailaddr));
}

//Call function so emailaddr will appear where this script is put in the page
displayemailaddr();
