function sendRequest(b,e,a){var c=createXMLHTTPObject();if(!c){return}var d=(a)?"POST":"GET";c.open(d,b,true);c.setRequestHeader("User-Agent","XMLHTTP/1.0");if(a){c.setRequestHeader("Content-type","application/x-www-form-urlencoded");c.setRequestHeader("X-Requested-With","XMLHttpRequest")}c.onreadystatechange=function(){if(c.readyState!=4){return}if(c.status!=200&&c.status!=304){return}e(c)};if(c.readyState==4){return}c.send(a)}var XMLHttpFactories=[function(){return new XMLHttpRequest()},function(){return new ActiveXObject("Msxml2.XMLHTTP")},function(){return new ActiveXObject("Msxml3.XMLHTTP")},function(){return new ActiveXObject("Microsoft.XMLHTTP")}];function createXMLHTTPObject(){var b=false;for(var a=0;a<XMLHttpFactories.length;a++){try{b=XMLHttpFactories[a]()}catch(c){continue}break}return b}function parseResponse(response){var data;var objectData;try{data=response.responseText;objectData=JSON.parse(data);if(typeof objectData!="object"){objectData=eval("("+response.responseText+")")}}catch(e){objectData=eval("("+response.responseText+")")}return objectData};
