function searchBoxSelection(select) {
	var searchBox = document.getElementById('searchBox');
	
	if (select){
		if (searchBox.value == 'Enter Location, Zip or MLS#')
			searchBox.value = '';
	}
	else {
		if (searchBox.value.length < 1)
			searchBox.value = 'Enter Location, Zip or MLS#';
	}
}

function safe_sumbit_form(form)
{
	var hdn = document.createElement("input");
	hdn.setAttribute("type","hidden");
	hdn.setAttribute("value",window.location.href);
	hdn.setAttribute("name", "SFS");
	form.appendChild(hdn);
}

function setSearchRegionAndSubmit(element)
{
	var location = jQuery(element).attr('title');
	jQuery('#propertyRegionfooter').val(location);
	jQuery('#searchformfooter').submit();
}
