addy="Fraq na rznvy gb <n uers=\"znvygb:hf@tynfgbaoevqtr.pb.hx\">hf@tynfgbaoevqtr.pb.hx</n> naq jr'yy trg onpx gb lbh nf fbba nf cbffvoyr.";
function rot13(str){ //i was bored...
  rot = "";
  for(i=0; i < str.length; ++i) {
    c = str.charCodeAt(i);
    offset=65;
    if(c>=97) offset=97;
    c -= offset;
    if(c>=0 && c<13) c+=13;
    else if (c>=13 && c<26) c-=13;
    c += offset;
    rot += String.fromCharCode(c);
  }
  return rot;
}
document.getElementById("contactdetails").innerHTML = rot13(addy);
