Countryobj = {	
			"AME"			:	"/ENG/Web_ProductHome.asp?country=AME&language=ENG&productid=30315",
			"AUS"			:	"http://direct.motorola.com/eng/BTStereoHS_Web_Features.asp?country=aus&language=ENG",
			"DNK"			:	"/dns/stereoheadsets/StereoHeadsets_Home.asp?country=DNK&language=DNS",
			"DEU"			:	"/ger/stereoheadsets/stereoheadsets_home.asp?country=deu&language=ger",
                                          "FRN"			:	"/frn/StereoHeadsets/StereoHeadsets_Home.asp?country=FRA&language=FRN",
			"HKG"			:	"http://direct.motorola.com/ZHU/BTStereoHS_Web_Features.asp?country=HKG&language=ZHU",
			"ITA"			:	"/itn/stereoheadsets/stereoheadsets_Home.asp?country=ita&language=itn",			
			"IDN"			:	"/IND/Web_ProductHome.asp?country=IDN&language=IND&productid=30381",
			"IND"			:	"/ENA/Web_ProductHome.asp?country=IND&language=ENA&productid=30381",
			"IRL"			:	"/eng/stereoheadsets/StereoHeadsets_Home.asp?country=IRL&language=ENG",
			"MAL"			:	"http://direct.motorola.com/eng/BTStereoHS_Web_Features.asp?country=mys&language=ENG",
			"NLD"			:	"/DUT/Web_ProductHome.asp?country=NLD&language=DUT&productid=30315",
			"NZL"			:	"http://direct.motorola.com/ENA/BTStereoHS_Web_Features.asp?country=NZL&language=ENA",
                       		"PAE"                  		:	"http://direct.motorola.com/ENA/BTStereoHS_Web_Features.asp?country=PAE&language=ENA",                        
			"PHI"			:	"http://direct.motorola.com/eng/BTStereoHS_Web_Features.asp?country=phl&language=ENG",
			"POL"			:	"http://direct.motorola.com/PQL/web_producthome.asp?Country=POL&language=PQL&productid=30315",
			"POR"			:	"/por/stereoheadsets/stereoheadsets_Home.asp?country=prt&language=por",
			"RUS"			:	"http://direct.motorola.com/RSN/web_producthome.asp?Country=RUS&language=RSN&productid=30315",		
			"SGP"			:	"/eng/BTStereoHS_Web_Features.asp?country=sgp&language=ENG",			
			"SAF"			:	"/ENG/Web_ProductHome.asp?country=SAF&language=ENG&productid=30315",
			"SVK"			:	"/SLO/Web_ProductHome.asp?country=SVK&language=SLO&productid=30315",
			"SPA"			:	"/spn/stereoheadsets/stereoheadsets_home.asp?country=ESP&language=SPN",
			"CHE"			:	"http://direct.motorola.com/GER/web_producthome.asp?Country=CHE&language=GER&productid=30315",
			"GBR"			:	"/eng/BTStereoHS_Web_Features.asp?country=gbr&language=ENG",
			"USA"			:	"/ENS/stereomusic/music_home.asp",
			"VNM"			:	"/VIE/web_producthome.asp?Country=VNM&language=VIE&productid=30381"
      }
	
		
 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];
			}
	
 }