Countryobj = {	
			
			"Africa"		:	"http://sg.motorola.com/bluetooth/",
			"MDE"			:	"http://sg.motorola.com/bluetooth/",
			"ARG"			:	"/SPL/ARG/bluetooth/",
            "AUS"           :   "http://sg.motorola.com/bluetooth/",
            "BRA"			:	"/PRL/BRA/bluetooth/",
			"FRA"			:	"frn/Moto_Shell_FR.html",
            "DEU"           :   "ger/Moto_Shell_DE.html",
			"IND"			:	"http://sg.motorola.com/bluetooth/",
            "IDN"           :   "http://sg.motorola.com/bluetooth/",
			"ISR"			:	"http://sg.motorola.com/bluetooth/",			
			"ITA"			:	"/ITN/ITA/bluetooth/",
			"KEN"			:	"http://sg.motorola.com/bluetooth/",
			"MAL"			:	"http://sg.motorola.com/bluetooth/",
			"MEX"			:	"/SPL/MEX/bluetooth/",
			"NZL"			:	"http://sg.motorola.com/bluetooth/",
			"NGA"			:	"http://sg.motorola.com/bluetooth/",
			"PER"			:	"/SPL/PRU/bluetooth/",
			"PHL"			:	"http://sg.motorola.com/bluetooth/",
			"SGP"			:	"/ENA/bluetooth/sg/",
			"SAF"			:	"http://sg.motorola.com/bluetooth/",		
			"ESP"			:	"spn/Moto_Shell_SP.html",			
			"THA"			:	"http://sg.motorola.com/bluetooth/",
			"GBR"			:	"/eng/GBR/bluetooth",
			"USA"			:	"/ens/usa/bluetooth/index.html?country=USA&language=ENS",
			"VEN"			:	"/SPL/VEN/bluetooth/",
			"VNM"			:	"http://sg.motorola.com/bluetooth/"		                                     
			
      }
	
		
 function GoToCountry()
 {
			var myindex = document.countryselect.dropdown.selectedIndex
			var myCountry = document.countryselect.dropdown.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];
			}
	
 }