function AJAXsearch(query) {
	var xmlHttp=GetXmlHttpObject();
	
	if (xmlHttp == null) {
		alert ("Your browser does not support AJAX!");
		return;
	}
	
	xmlHttp.onreadystatechange=function() {
		if (xmlHttp.readyState == 4) { 
			document.getElementById("txtSearch").innerHTML=xmlHttp.responseText;
		}
	}
	
	xmlHttp.open("GET","../../assets/_php/search.php?q="+query,true);
	xmlHttp.send(null);
}

