Countryobj = {	
"BRA"	:	"index_BR-PT.html",
"CHN"	:	"http://www.motorola.com/consumers/v/index.jsp?vgnextoid=1c5cbc3dfbc5e110VgnVCM1000008406b00aRCRD",
"MEX"	:	"index_MX-ES.html"
}

function GoToCountry() {
var myindex = document.txt_country.dropdown.selectedIndex
var myCountry = document.txt_country.dropdown.options[myindex].value
var myURL = "";

if (myCountry == "-1"){
	alert("Please select your Country");
}
	else {
		myURL = Countryobj[myCountry];
	
		myURL = myURL.toLowerCase();
	
		document.location.href = Countryobj[myCountry];
	}
}
