function makePostRequest(d,b,c){var a=false;if(window.XMLHttpRequest){a=new XMLHttpRequest();if(a.overrideMimeType){a.overrideMimeType("text/xml")}}else{if(window.ActiveXObject){try{a=new ActiveXObject("Msxml2.XMLHTTP")}catch(f){try{a=new ActiveXObject("Microsoft.XMLHTTP")}catch(f){}}}}if(a){a.onreadystatechange=function(){if(a.readyState==4&&a.status==200){d(a.responseText)}};a.open("GET",b+"?"+c,true);a.send(null)}};
