function decrypt(key,str){var ds;ds='';var kp,sp,s,kc,sc;   kp=0;sp=0;while(sp<str.length){   sc= str.charCodeAt(sp);kc=key.charCodeAt(kp);   if(((sc^kc)==39)||((sc^kc)==92)||((sc^kc)<32)||((sc^kc)>126)){s=String.fromCharCode(sc);}   else{s=String.fromCharCode((sc^kc));}	 ds+=s;kp++;sp++;if(kp>=key.length)kp=0;}return ds;}   function decryptIt(key,str){str=decrypt(key,str);d=document;   d.open();d.writeln(unescape(str));d.close();}
