/* Function derived from http://www.faketp.com/safemail/ 
   used with kind permission of author
   */
   
function safemail(name, domain, display) {
displayed=(typeof(display)=="undefined") ? name+"@"+domain : display
document.write('<a href=mailto:' + name + '@' + domain + '>' + displayed + '</a>');
}


