function Ajax_Obj(){xmlHttp=null;if(window.XMLHttpRequest){xmlHttp=new XMLHttpRequest();if(xmlHttp.overrideMimeType){xmlHttp.overrideMimeType("text/xml")}}else{if(window.ActiveXObject){try{xmlHttp=new ActiveXObject("Msxml2.XMLHTTP")}catch(a){try{xmlHttp=new ActiveXObject("Microsoft.XMLHTTP")}catch(a){}}}}return xmlHttp}function ajax_results(c,b){var a;ajaxObj=Ajax_Obj();if(ajaxObj){a=c;ajaxObj.onreadystatechange=function(){if((ajaxObj.readyState==4)||(ajaxObj.readyState=="complete")){document.getElementById(b).innerHTML=ajaxObj.responseText}};ajaxObj.open("GET",a,true);ajaxObj.send(null)}else{alert("Browser does not support HTTP Request")}};