  function decode(code)
  {
    var m = '';
    for(var i = 0; i < code.length; i++) {
         m += String.fromCharCode(code.charCodeAt(i) - 2) ;
    }
    location.href = 'mailto:' + m;
  }

