/* ####################### AJAX FUNCTIONS FOR THE ADVANCED SEARCH ################### */
/* ####################### Developed by: FLAVIUS ROSU ############################### */

var popup = false;

function SendLocationToSearch(val)
{
	if(val!="")
	{
		var url="http://dev.realestateagent.com/sources/adv_search_autosugest.php";
		url=url+"?search_string="+val;
		var target = 'auto_sugest';
		popup = true;
		var myAjax = new Ajax.Updater(target, url, {	method: 'get'});
		$(target).show();
	}
}

function HideAutosugestion()
{
	if(popup==true)
	{
		popup = false;
		var target = 'auto_sugest';
		$(target).hide();
	}
}

function SelectSugestionItem(val)
{
	document.getElementById('location').value = val;
	HideAutosugestion();
	popup = true;
}

