Countryobj = {	

                "CHN"    :      "http://direct.motorola.com/hellomoto/cn/h12/", 
		"USA"    :	"http://direct.motorola.com/hellomoto/h12/experience",
		"DEU"    :	"http://direct.motorola.com/hellomoto/de/h12/experience",
		"AUS"    :	"http://direct.motorola.com/hellomoto/h12/experience",
		"FRA"    :	"http://direct.motorola.com/hellomoto/fr/h12/experience/",
		"IDN"    :	"http://direct.motorola.com/hellomoto/h12/experience",
		"IRL"    :	"http://direct.motorola.com/hellomoto/h12/experience",
		"ITA"    :	"http://direct.motorola.com/hellomoto/it/h12/experience/",
		"MAL"    :	"http://direct.motorola.com/hellomoto/h12/experience",
		"NLD"    :	"http://direct.motorola.com/hellomoto/h12/experience",
		"NZL"    :	"http://direct.motorola.com/hellomoto/h12/experience",
		"RUS"    :	"http://www.motorola.com/consumer/v/index.jsp?vgnextoid=c2d8a9e410836110VgnVCM1000008206b00aRCRD&show=accessoryCategoryHome&sid=69531787c85c9010VgnVCM1000008206b00aRCRD&catName=Headsets",
		"SGP"    :	"http://direct.motorola.com/hellomoto/h12/experience",
		"SAF"    :	"http://direct.motorola.com/hellomoto/h12/experience",
		"ESP"    :	"http://direct.motorola.com/hellomoto/es/h12/experience",
		"GBR"    :	"http://direct.motorola.com/hellomoto/h12/experience"
		
    }

	
		
 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];

			}

	

 }