function launchErrorReporter(){var A="/report.php?surl="+encodeBase64(location.href);window.open(A,"error_report","width=575,height=615,resizable=yes,scrollbars=yes")}var END_OF_INPUT=-1;var base64Chars=new Array("A","B","C","D","E","F","G","H","I","J","K","L","M","N","O","P","Q","R","S","T","U","V","W","X","Y","Z","a","b","c","d","e","f","g","h","i","j","k","l","m","n","o","p","q","r","s","t","u","v","w","x","y","z","0","1","2","3","4","5","6","7","8","9","+","/");var reverseBase64Chars=new Array();for(var i=0;i<base64Chars.length;i++){reverseBase64Chars[base64Chars[i]]=i}var base64Str;var base64Count;function setBase64Str(A){base64Str=A;base64Count=0}function readBase64(){if(!base64Str){return END_OF_INPUT}if(base64Count>=base64Str.length){return END_OF_INPUT}var A=base64Str.charCodeAt(base64Count)&255;base64Count++;return A}function encodeBase64(E){setBase64Str(E);var A="";var D=new Array(3);var C=0;var B=false;while(!B&&(D[0]=readBase64())!=END_OF_INPUT){D[1]=readBase64();D[2]=readBase64();A+=(base64Chars[D[0]>>2]);if(D[1]!=END_OF_INPUT){A+=(base64Chars[((D[0]<<4)&48)|(D[1]>>4)]);if(D[2]!=END_OF_INPUT){A+=(base64Chars[((D[1]<<2)&60)|(D[2]>>6)]);A+=(base64Chars[D[2]&63])}else{A+=(base64Chars[((D[1]<<2)&60)]);A+=("=");B=true}}else{A+=(base64Chars[((D[0]<<4)&48)]);A+=("=");A+=("=");B=true}C+=4;if(C>=76){A+=("\n");C=0}}return A}function readReverseBase64(){if(!base64Str){return END_OF_INPUT}while(true){if(base64Count>=base64Str.length){return END_OF_INPUT}var A=base64Str.charAt(base64Count);base64Count++;if(reverseBase64Chars[A]){return reverseBase64Chars[A]}if(A=="A"){return 0}}return END_OF_INPUT}function ntos(A){A=A.toString(16);if(A.length==1){A="0"+A}A="%"+A;return unescape(A)}function decodeBase64(D){setBase64Str(D);var A="";var C=new Array(4);var B=false;while(!B&&(C[0]=readReverseBase64())!=END_OF_INPUT&&(C[1]=readReverseBase64())!=END_OF_INPUT){C[2]=readReverseBase64();C[3]=readReverseBase64();A+=ntos((((C[0]<<2)&255)|C[1]>>4));if(C[2]!=END_OF_INPUT){A+=ntos((((C[1]<<4)&255)|C[2]>>2));if(C[3]!=END_OF_INPUT){A+=ntos((((C[2]<<6)&255)|C[3]))}else{B=true}}else{B=true}}return A}