Countryobj = {	

"BRA"    :      "http://direct.motorola.com/PRL/T815/T815_Home.asp?country=BRA&language=PRL",
"GBR"    :	"http://direct.motorola.com/ENG/T815/T815_Home.asp?country=GBR&language=ENG",
"USA"    :	"http://direct.motorola.com/ENS/T815/T815_Home.asp?country=USA&language=ENS"


    }

	
		
 function GoToCountry2()

 {

			var myindex = document.countryselect2.dropdown2.selectedIndex

			var myCountry = document.countryselect2.dropdown2.options[myindex].value

			var myURL = "";



			if (myCountry == "-1"){

				alert("please select a country/region");

			}

			else

			{

				myURL = Countryobj[myCountry];

				myURL = myURL.toLowerCase();



				document.location.href = Countryobj[myCountry];

			}

	

 }