function lamalivesearch(search)
	{
	if (window.XMLHttpRequest) {xmlhttp=new XMLHttpRequest();}
	else{xmlhttp=new ActiveXObject("Microsoft.XMLHTTP");}
	xmlhttp.onreadystatechange=function()
		{
		if (xmlhttp.readyState==4 && xmlhttp.status==200)
			{
			document.getElementById("livesearch").innerHTML=xmlhttp.responseText;
			}
		}
	xmlhttp.open("GET","/wp-content/plugins/lama-live-search/search_results.php?s="+search,true);
	xmlhttp.send();
	}
