var map=new Array();var s="abcdefghijklmnopqrstuvwxyz";for(var i=0;i<s.length;i++)map[s.charAt(i)]=s.charAt((i+13)%26);for(i=0;i<s.length;i++)map[s.charAt(i).toUpperCase()]=s.charAt((i+13)%26).toUpperCase();function linkTo_UnCryptMailto(str){var rwert='mailto:';for(i=0;i<str.length;i++){var b=str.charAt(i);if(b=='!')rwert+='@';else rwert+=('A'<=b&&b<='Z'||'a'<=b&&b<='z'?map[b]:b);}location.href=rwert;}
