On Fri, 20 Apr 2001 08:29:22 +0200, Nicolas Villatte wrote: > function Merlin( 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 ); } ^^^^^^^^^^ It looks like you just need to shift the characters left by three characters. Play around with that and see what you get. Andy
This archive was generated by hypermail 2b30 : Sat Apr 21 2001 - 16:49:34 PDT