function countryRedirect(form) {
if (form.cboCountry.selectedIndex != 0)
{
	{ 
	 if (form.cboCountry.options[form.cboCountry.selectedIndex].value != '')
		{document.location.href=form.cboCountry.options[form.cboCountry.selectedIndex].value;}
	}
}
}
function RedirectCountry(form) {
if (form.ContactCountry.selectedIndex != 0)
{
	{ 
	 if (form.ContactCountry.options[form.ContactCountry.selectedIndex].value != '')
		{document.location.href=form.ContactCountry.options[form.ContactCountry.selectedIndex].value;}
	}
}
}

function openMenuCountry(form){
if (form.ContactCountry.selectedIndex != 0){
	if (form.ContactCountry.options[form.ContactCountry.selectedIndex].value == 'Rus')
		{document.getElementById(form.ContactCountry.options[form.ContactCountry.selectedIndex].value).style.display = "block";
			document.getElementById("Tur").style.display = "none";
			document.getElementById("Ukr").style.display = "none";
		}
	if (form.ContactCountry.options[form.ContactCountry.selectedIndex].value == 'Tur')
		{document.getElementById(form.ContactCountry.options[form.ContactCountry.selectedIndex].value).style.display = "block";
			document.getElementById("Rus").style.display = "none";
			document.getElementById("Ukr").style.display = "none";
		}
	if (form.ContactCountry.options[form.ContactCountry.selectedIndex].value == 'Ukr')
		{document.getElementById(form.ContactCountry.options[form.ContactCountry.selectedIndex].value).style.display = "block";
			document.getElementById("Rus").style.display = "none";
			document.getElementById("Tur").style.display = "none";
		}
}
else {document.getElementById("Rus").style.display = "none";
		document.getElementById("Tur").style.display = "none";
		document.getElementById("Ukr").style.display = "none";}
}
