// afkodning af tilfældigt valgte erstattede tegn, herefter rot13 dekryptering

function decrypt(text){
text = text.replace(/!/g,"@");
text = text.replace(/#/g,"n");
text = text.replace(/%/g,".");
text = text.replace(/£/g,"<");
text = text.replace(/§/g,">");
alpha="abcdefghijklmnopqrstuvwxyz";
alpha+=alpha+alpha.toUpperCase()+alpha.toUpperCase();
for(i=0,result=""; i < text.length;
  result+=(alpha.indexOf(text.charAt(i)) < 0)?
  text.charAt(i++):
  alpha.charAt(alpha.indexOf(text.charAt(i++))+13)
);
void(document.write(result));
}