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);
}
