Countryobj = {	
			"AME"		:	"/ENG/Web_ProductHome.asp?country=AME&language=ENG&productid=30315",
			"AUT"			:	"/GER/razrwire_AUT_producthome.asp?country=AUT&language=GER",
			"DNK"			:	"http://direct.motorola.com/DNS/Web_ProductHome.asp?country=DNK&language=DNS&productid=30315",
			"DEU"			:	"/GER/razrwire_DEU_producthome.asp?country=DEU&language=GER",
			"FRA"			:	"/FRN//RAZRWIRE_FRA_ProductHome.asp?country=FRA&language=FRN",
			"HKG"			:	"http://www.motorola.com.hk/eng/motomobile/l7/",
			"ITA"			:	"/ITN/razrwire_ITA_producthome.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/razrwire_IRL_producthome.asp?country=IRL&language=ENG",
			"MAL"			:	"/ENA/razrwire_MYS_producthome.asp?country=MYS&language=ENA",
			"NLD"			:	"/DUT/Web_ProductHome.asp?country=NLD&language=DUT&productid=30315",
			"NZL"			:	"/ENA/Web_ProductHome.asp?country=NZL&language=ENA&productid=30381",
			"PHI"			:	"/ENA/razrwire_PHL_producthome.asp?country=PHL&language=ENA",
			"POL"			:	"http://direct.motorola.com/PQL/web_producthome.asp?Country=POL&language=PQL&productid=30315",
			"ROM"			:	"/RUM/razrwire_ROM_producthome.asp?country=ROM&language=RUM",
			"POR"			:	"/POR/razrwire_PRT_producthome.asp?country=PRT&language=POR",
			"RUS"			:	"http://direct.motorola.com/RSN/web_producthome.asp?Country=RUS&language=RSN&productid=30315",		
			"SGP"			:	"/ENA/razrwire_SGP_producthome.asp?country=SGP&language=ENA",			
			"SPA"			:	"/SPN/razrwire_ESP_producthome.asp?country=ESP&language=SPN",			
			"SAF"			:	"/ENG/Web_ProductHome.asp?country=SAF&language=ENG&productid=30315",
			"SVK"			:	"/SLO/razrwire_SVK_producthome.asp?country=SVK&language=SLO",
			"SPA"			:	"http://direct.motorola.com/SPN/web_producthome.asp?Country=ESP&language=SPN&productid=30315",
			"CHE"			:	"/GER/razrwire_CHE_producthome.asp?country=CHE&language=GER",
			"CHF"			:	"/FRN/razrwire_CHF_producthome.asp?country=CHF&language=FRN",
			"GBR"			:	"/ENG/RAZRWIRE_GBR_ProductHome.asp?country=GBR&language=ENG",
			"USA"			:	"/ens/RAZRWIRE_Web_ProductHome.asp?country=USA&language=ENS",
			"TUR"			:	"/TRK/razrwire_tur_producthome.asp?country=tur&language=trk",
			"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];
			}
	
 }