var XMLHttp=null,elementid=null;function XMLHttpfunction(){if(window.XMLHttpRequest)XMLHttp=new XMLHttpRequest;else if(window.ActiveXObject)XMLHttp=new ActiveXObject("Microsoft.XMLHTTP");return XMLHttp}
function stateChanged(){if(XMLHttp.readyState==4||XMLHttp.readyState=="complete")document.getElementById(elementid).innerHTML=XMLHttp.responseText;else document.getElementById(elementid).innerHTML="<font style='color:#000000;background-color:#dcdcdc;' face='arial' size=1>Loading data please wait...</font>"}
function showHint(a,b){elementid=b;XMLHttp=XMLHttpfunction();if(XMLHttp==null)alert("Browser does not support HTTP Request");else{a=a;a=a+"&ch="+Math.random();XMLHttp.onreadystatechange=stateChanged;XMLHttp.open("GET",a,true);XMLHttp.send(null)}}
function submitFormDetails(a,b,c){elementid=b;XMLHttp=XMLHttpfunction();if(XMLHttp==null)alert("Browser does not support HTTP Request");else{a=a;a=a+"&chc="+Math.random();XMLHttp.onreadystatechange=stateChanged;XMLHttp.open("POST",a,true);XMLHttp.setRequestHeader("Content-Type","application/x-www-form-urlencoded; charset=UTF-8");XMLHttp.send(c)}};

