	function onShowCountries()
	{
		$('country_selector').toggle();
	}

	function onSelectCountry(country)
	{
		$('country_selector').hide();


		Cookie.set('bmtt_country', country, 1);

		onSetCountry();
	}

	function onSetCountry()
	{
		var bmtt_country = Cookie.get('bmtt_country');

		if( bmtt_country )
		{
			var image = "/images/flags/png/" + bmtt_country.toLowerCase() + ".png";

			image = '<img id="bmtt_country_flag" src="' + image + '" border="0" onclick="onShowCountries()" />';

			$('c').value = bmtt_country;
			$('my_country').innerHTML = image;
		}
	}

    function onClean(value)
    {
        if( value == 'Course, City, or Zip Code' )
            document.getElementById('s').value = '';
    }