
function gatewayChangeCountryLang(countryLangCurrent,countryLangSelect, myPage){
	var countryLangRequest = countryLangSelect.options[countryLangSelect.selectedIndex].value;
	if (countryLangCurrent != countryLangRequest)
	{
		document.location.href= myPage;
	}
	//return true;
}