<!--
function GoToOtherCity()
{	with(window.document.StatePageExtraForm)
	{	ix = city.selectedIndex;
		if (ix > 0)
		{	city_url_value = city[ix].value;
			location.href = city_url_value;
		}

		return false;
	}
}

function call_CountryFeaturedLists()
{	with(window.document.StatePageExtraForm)
	{	ix = country.selectedIndex;
	 
		if (ix > 0)
		{	
			if ( ix == 1)
			{	
				location.href = '/international-property-condos-search/';
								
			}
			else
			{	country_value = country[ix].value;
				/*	target_url = "/condos-international/"+ country_value +"-condos"; */ /* Link to the Country Page */
				target_url = "/international-property-"+country_value+"-condos-search.html";
				location.href = target_url;	
			}

			

		}
		 

		return false;

	}
}
//-->