function AjaxFunction(e,d,c){var b=false;var a=this;if(window.XMLHttpRequest){a.xmlHttpReq=new XMLHttpRequest()}else{if(window.ActiveXObject){a.xmlHttpReq=new ActiveXObject("Microsoft.XMLHTTP")}}a.xmlHttpReq.open("POST",e,true);a.xmlHttpReq.setRequestHeader("Content-Type","application/x-www-form-urlencoded");a.xmlHttpReq.onreadystatechange=function(){if(a.xmlHttpReq.readyState==4){updatepage(a.xmlHttpReq.responseText,d)}};a.xmlHttpReq.send(c)}function updatepage(a,b){document.getElementById(b).innerHTML=a};
