
function deszyfruj(email) {
var decrypted_email='';

for(var i in email) {
decrypted_email+=String.fromCharCode(email.charCodeAt(i)-1);

}

parent.location='mailto:'+decrypted_email;
return true;

}
