function lOOl(los)
{
  oo=new String;
  for(l=0;l<los.length;l++)
  {
    var n=los.charCodeAt(l);
    oo+=String.fromCharCode(n-3);
  };
  oo=oo.replace(/&dyE/g,"Y");
  oo=""+oo+"";
  document.write(oo)
};
求这个函数的EDLPHI版的加密和解密函数.