Countryobj = {	
			
                        "IRL"                   :     "/eng/headsets/H550_Headset_detail.asp?country=IRL&language=ENG",
                        "POR"                   :     "/por/headsets/H550_Headset_detail.asp?country=PRT&language=POR",
                        "SPA"                    :    "/spn/headsets/H550_Headset_detail.asp?country=ESP&language=SPN",
                        "GBR"                   :     "/eng/headsets/H550_Headset_detail.asp?country=GBR&language=ENG",
			"USA"			:	"/ENS/HKernel/H550_Headset_detail.asp",
                       "DNK"	           :    "/dns/headsets/headset_Home.asp?country=dnk&language=dns", 	 
                                      "DEU"	           :    "/ger/headsets/Headset_Home.asp?country=DEU&language=GER",
                                      "ITA"	           :    "/itn/headsets/headset_Home.asp?country=ita&language=itn",
   "HUN"                   :   "/hun/headsets/headset_Home.asp?country=hun&language=hun",
                     "AUS"                    :   "/ger/headsets/Headset_Home.asp?country=aut&language=ger",
"FRA"                    :   "/frn/headsets/Headset_Home.asp?country=FRA&language=FRN",
"ZAF"                    :   "/eng/headsets/Headset_Home.asp?country=SAF&language=ENG",
"CHE"                    :   "/eng/headsets/Headset_Home.asp?country=SAF&language=ENG"			                                     
			
      }
	
		
 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];
			}
	
 }