function decrypt(theinputtext){code1=theinputtext;code2="";codelength=code1.length;for(i=0;i<codelength;i++){code2+=String.fromCharCode(code1.charCodeAt(i)^2);}decrypted=unescape(code2);return decrypted;}

