function changeCountryCookie() 
{
	var oCountryDropDown = document.getElementById("CountryCookie");
	var sSelectedCountry = oCountryDropDown.options[oCountryDropDown.selectedIndex].value;
	createCookie('Country', sSelectedCountry, 1)
	//alert("sSelectedCountry=" + sSelectedCountry + "| Cookie = " + readCookie("Country"))
	window.location.reload(true);
}

function checkCountryCookie() 
{
	var oCountryDropDown = document.getElementById("CountryCookie");
	var sCountryCookieValue = readCookie("Country")
	for (i = 0; i < oCountryDropDown.options.length; i++) 
	{
		if (oCountryDropDown.options[i].value == sCountryCookieValue) 
		{
			oCountryDropDown.options[i].selected = true;
			break;
		}
	}

}
