Countryobj = {	
			"AME"		    :	"http://sg.motorola.com/bluetooth/",
			"AUS"			:	"http://sg.motorola.com/bluetooth/",
            "AUT"           :   "/ger/carkits/Carkits_Home.asp?country=AUT&language=GER",
			"DNK"			:	"http://direct.motorola.com/DNS/Web_ProductHome.asp?country=DNK&language=DNS&productid=30315",
			"FRA"			:	"frn/Moto_Shell_FR.html",
			"GER"			:	"ger/Moto_Shell_DE.html",
			"DEU"			:	"http://direct.motorola.com/hellomoto/bluetoothpromotion/ger/Moto_Shell_DE.html",
			"HKG"			:	"http://www.motorola.com.hk/eng/motomobile/l7/",
			"ITA"			:	"http://direct.motorola.com/ITN/ITA/bluetooth/",			
			"IDN"			:	"http://sg.motorola.com/bluetooth/",
			"IND"			:	"http://sg.motorola.com/bluetooth/",
			"IRL"			:	"/ENG/Web_ProductHome.asp?country=IRL&language=ENG&productid=30315",
			"MAL"			:	"http://sg.motorola.com/bluetooth/",
			"NLD"			:	"/DUT/Web_ProductHome.asp?country=NLD&language=DUT&productid=30315",
			"NZL"			:	"http://sg.motorola.com/bluetooth/",
			"PHI"			:	"http://direct.motorola.com/ENA/web_producthome.asp?Country=PHL&language=ENA&productid=30381",
			"POL"			:	"http://direct.motorola.com/PQL/web_producthome.asp?Country=POL&language=PQL&productid=30315",
			"POR"			:	"http://direct.motorola.com/POR/web_producthome.asp?Country=PRT&language=POR&productid=30315",
			"RUS"			:	"http://direct.motorola.com/RSN/web_producthome.asp?Country=RUS&language=RSN&productid=30315",		
			"SGP"			:	"http://direct.motorola.com/ENA/bluetooth/sg/",			
			"SAF"			:	"http://sg.motorola.com/bluetooth/",
			"SVK"			:	"/SLO/Web_ProductHome.asp?country=SVK&language=SLO&productid=30315",
			"SPA"			:	"http://direct.motorola.com/SPN/web_producthome.asp?Country=ESP&language=SPN&productid=30315",
			"CHE"			:	"http://direct.motorola.com/GER/web_producthome.asp?Country=CHE&language=GER&productid=30315",
			"GBR"			:	"http://direct.motorola.com/eng/GBR/bluetooth/",
			"USA"			:	"http://www.motorola.com/consumers/v/index.jsp?vgnextoid=0bec2b11661fd110VgnVCM1000008806b00aRCRD&appInstanceName=default&vgnextrefresh=1",
			"VNM"			:	"http://sg.motorola.com/bluetooth/",
			"BRA"           :   "http://direct.motorola.com/PRL/BRA/bluetooth/" ,
			"Africa"        :   "http://sg.motorola.com/bluetooth/" ,
			"MDE"           :   "http://sg.motorola.com/bluetooth/",
			"ARG"           :   "http://direct.motorola.com/SPL/ARG/bluetooth/",
			"ISR"           :   "http://sg.motorola.com/bluetooth/",
			"KEN"           :   "http://sg.motorola.com/bluetooth/",
			"MEX"           :   "http://sg.motorola.com/bluetooth/",
			"NGA"           :   "http://sg.motorola.com/bluetooth/",
			"PER"           :   "http://direct.motorola.com/SPL/PRU/bluetooth/", 
			"PHL"           :   "http://sg.motorola.com/bluetooth/",
			"ESP"           :   "http://direct.motorola.com/hellomoto/bluetoothpromotion/spn/Moto_Shell_SP.html",  
			"THA"           :   "http://sg.motorola.com/bluetooth/",
			"VEN"           :   "http://direct.motorola.com/SPL/VEN/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];
				//document.location.href =myCountry;
			}
	
 }
