function decritta(e) {
        var cmail='';
        var length=e.length;

        for(i=0;i<length;i++) {
          cmail += String.fromCharCode(e.charCodeAt(i)-3);
        }

        window.location = 'mailto:' + cmail;
}

