var xmlHttp;var fieldID;function updateSearches(C,A){xmlHttp=GetXmlHttpObject();if(xmlHttp==null){alert("Your browser does not support AJAX!");return }var B="update_google.php";B=B+"?results="+C;B=B+"&id="+A;B=B+"&sid="+Math.random();xmlHttp.onreadystatechange=stateChanged;xmlHttp.open("GET",B,true);xmlHttp.send(null)}function stateChanged(){if(xmlHttp.readyState==4){}}function GetXmlHttpObject(){var A=null;try{A=new XMLHttpRequest()}catch(B){try{A=new ActiveXObject("Msxml2.XMLHTTP")}catch(B){A=new ActiveXObject("Microsoft.XMLHTTP")}}return A};