	function gotoCountry (theList) {
		var pageName = theList.options[theList.selectedIndex].value;
		if (pageName) {
			window.location = makeAbsolute('/gowealthy/wcms/en/home/countries/' + pageName + ".html");
		}
	}

	function switchCountry(form) {
		var theList = form['country'];
		var country = theList.options[theList.selectedIndex].value;
		makeHttpAction(form);
		form.submit();
	}

	function gotoEmirate(theList) {
		var emirate = theList.options[theList.selectedIndex].value;
		if (emirate) {
			launchURL('/gowealthy/wcms/en/home/real-estate/uae/' + emirate + "/index.html");
		}
	}

	function launchURL(url) {
		window.location = makeAbsolute(url);
	}

	function makeAbsolute(url) {
		return "http://" + window.location.host + url
	}

