
/* - simple_encrypter.js - */
// http://www.jonasstienen.de/portal_javascripts/simple_encrypter.js?original=1
function decrypt_me(s){var s_arr=s.split(';')
var new_s=''
for(var i=0;i<s_arr.length-1;i++)
new_s+=String.fromCharCode(parseInt(s_arr[i])+3)
return new_s}
function mail_linker(m){var gorgeous="mail"
location.href=gorgeous+"to"+":"+decrypt_me(m)}

