<!--
function call_CountryFeaturedLists()
{	with(window.document.Form_CountryFeaturedLists)
	{	ix = country.selectedIndex;
		if (ix > 0)
		{	country_value = country[ix].value;

			target_url = "/international-property-"+ country_value +"-condos-search.html";
			//target_url = "/condos-international/"+ country_value +"-condos/";

			location.href = target_url;

		}

		return false;

	}
}

function call_PropertyFeaturedLists()
{	with(window.document.Form_PropertyFeaturedLists)
	{	ix = property.selectedIndex;
		if (ix > 0)
		{	property_value = property[ix].value;

			target_url = "/condos-international/"+ property_value + "/";

			location.href = target_url;

		}

		return false;

	}
}
//-->