Countryobj1 = {	

"GBR"    :	"http://direct.motorola.com/ENG/T805/T805_Home.asp?country=GBR&language=ENG",
"USA"    :	"http://direct.motorola.com/ENS/T805/T805_Home.asp?country=USA&language=ENS"

    }

	
		
 function GoToCountry1()

 {

			var myindex = document.countryselect1.dropdown1.selectedIndex

			var myCountry = document.countryselect1.dropdown1.options[myindex].value

			var myURL = "";



			if (myCountry == "-1"){

				alert("please select a country/region");

			}

			else

			{

				myURL = Countryobj1[myCountry];

				myURL = myURL.toLowerCase();



				document.location.href = Countryobj1[myCountry];

			}

	

 }