function AjaxRequest(){var d="callBack";this.post=function(a,b,c){b=b.replace(/\r\n/g," ");b=b.replace(/\r/g," ");b=b.replace(/\n/g," ");b=b.replace(/\t/g,"    ");this.contentType="application/x-www-form-urlencoded";d=(c==undefined?"callBack":c);if(window.XMLHttpRequest){req=new XMLHttpRequest();req.onreadystatechange=this.processReqChange;req.open("POST",a,true);req.setRequestHeader('Content-Type',this.contentType);req.send(b)}else if(window.ActiveXObject){try{req=new ActiveXObject("Msxml2.XMLHTTP")}catch(excep){req=new ActiveXObject("Microsoft.XMLHTTP")}if(req){req.onreadystatechange=this.processReqChange;req.open("POST",a,true);req.setRequestHeader('Content-Type',this.contentType);req.send(b)}}};this.processReqChange=function(){if(req.readyState==4){try{parent[d](req.responseText)}catch(e){window[d](req.responseText)}}}}