// JavaScript Document  addr_protect.js
<!--
function addrprotect(the_text,the_address)
 {
 var a,b,c,d,e,f
 f='bob.squires@breathe.com';
 a='<a href=\"mai';
 b=the_address;   // recipient email address name
 c='\">';
 a+='lto:';
 b+='@';
 e='</a>';
 d=the_text;      // text to be shown as link
 b+='wigmorechurch.org.uk';    // domain name
 document.write(a+b+c+d+e);
 }
-->

