// Simple obsuficate decoder
function dl_ob(text){
  text = text.replace(/[a-zA-Z]/g, function(c){
    return String.fromCharCode((c <= "Z" ? 90 : 122) >= (c = c.charCodeAt(0) + 13) ? c : c - 26);
  });
  text = text.replace(/<-squo->/g, function(c){
    return "'";
  });
  return text;
}
