<!--
function decrypte(s) {
  var res = '', code=0;
  for(i=0; i<s.length; i++) {
    code = s.charCodeAt(i);
    res += String.fromCharCode(code-1);
  }
  return res;
}
-->
