var rot13array;function createROT13array(){var A=0,C=[],D="abcdefghijklmnopqrstuvwxyz",B=D.length;for(A=0;A<B;A++){C[D.charAt(A)]=D.charAt((A+13)%26)}for(A=0;A<B;A++){C[D.charAt(A).toUpperCase()]=D.charAt((A+13)%26).toUpperCase()}return C}function convertROT13String(C){var A=0,B=C.length,D="";if(!rot13array){rot13array=createROT13array()}for(A=0;A<B;A++){D+=convertROT13Char(C.charAt(A))}return D}function convertROT13Char(A){return(A>="A"&&A<="Z"||A>="a"&&A<="z"?rot13array[A]:A)}function convertROTStringWithBrackets(C){var F="",D="",E=true,A=0,B=C.length;if(!rot13array){rot13array=createROT13array()}for(A=0;A<B;A++){F=C.charAt(A);if(A<(B-4)){if(C.toLowerCase().substr(A,4)=="<br/>"){D+="<br>";A+=3;continue}}if(F=="["){E=false}else{if(F=="]"){E=true}else{if((F==" ")||(F=="&dhbg;")){}else{if(E){F=convertROT13Char(F)}}}}D+=F}return D};