// JavaScript Document
function Escramble(name)
// this function takes a name and prefixes it to the domain name to create an email address
// Thus spam harvesting is prevented 
{  
 var a,c,d,e  
 a='<a href=\"mai'  
 c='\">'  
 a+='lto:'  
 name+='@'  
 e='</a>'  
 name+='wrescue'  
 name+='.'  
 name+='com' 
 name+=';paulg' 
 name+='@' 
 name+='wrescue' 
 name+='.' 
 name+='com' 
 d=name  
 document.write(a+name+c+d+e)  
}