//EScrambled Email Address Code
//For help with this code go to http://innerpeace.org/escrambler.shtml
function simpleescramble(ename,domainname){
 var a,b,c,d
 a='<a href=\"mai'
 b=ename
 c='\">'
 a+='lto:'
 b+='@'
 d='</a>'
 b+=domainname
 document.write(a+b+c+b+d)
}