var xmlHttp
	function showHint2(str){
		xmlHttp=GetXmlHttpObject2();
		if (xmlHttp==null){
			alert ("Your browser does not support AJAX!");
			return;
	  	} 
		var url="ajax_php2.php";
		url=url+"?q="+str;
		url=url+"&sid="+Math.random();
		xmlHttp.onreadystatechange=stateChanged2;
		xmlHttp.open("GET",url,true);
		xmlHttp.send(null);
	}
	function stateChanged2(){
		if (xmlHttp.readyState==4){
			var responceString=xmlHttp.responseText;
			var responceArray=responceString.split("|");
			document.getElementById("txtHint2").innerHTML=responceArray[0];
			document.getElementById("searchBedrooms").innerHTML=responceArray[1];
		}
	}
	function GetXmlHttpObject2(){
		var xmlHttp=null;
		try{
			// Firefox, Opera 8.0+, Safari
	  		xmlHttp=new XMLHttpRequest();
	  	}
		catch (e){
			// Internet Explorer
	  		try{
		  		xmlHttp=new ActiveXObject("Msxml2.XMLHTTP");
	    	}
	  	catch (e){
		  	xmlHttp=new ActiveXObject("Microsoft.XMLHTTP");
	    }
	  }
	return xmlHttp;
	}
