Countryobj = {	

			"Argentina"		:	"/spl/s9/S9_Home.asp?country=ARG&language=SPL",
			"Brazil"		:	"/prl/s9/S9_Home.asp?country=bra&language=prl",
			"Colombia"		:	"/spl/s9/S9_Home.asp?country=col&language=SPL",
            "Denmark"		:	"/hellomoto/dk/s9",
			"Germany"		:	"/hellomoto/de/s9",
			"France"		:	"/hellomoto/fr/s9",
			"Italy"			:	"/hellomoto/it/s9",
			"Mexico"		:	"/spl/s9/S9_Home.asp?country=mex&language=SPL",
			"Portugal"		:	"/hellomoto/pt/s9",
			"Russia"		:	"/hellomoto/ru/s9",
			"Spain"			:	"/hellomoto/es/s9",
			"UK"			:	"/eng/s9/Headset_Home.asp?country=GBR&language=ENG",
			"United States"		:" http://www.motorola.com/consumers/v/index.jsp?vgnextoid=fb13ca0035f89110VgnVCM1000008406b00aRCRD&vgnextchannel=b49932a609e89110VgnVCM1000008406b00aRCRD",
			"Venezuela"		:	"/spl/s9/S9_Home.asp?country=ven&language=SPL",
            "Ireland" : "/eng/s9/s9_home.asp?country=ire&language=eng",
           "SouthAfrica" : "/eng/s9/s9_home.asp?country=saf&language=eng",
		   
		   
		   
		   
		   
		   
		   
		   
		   "CHI"		:	"/spl/s9/S9_Home.asp?country=chi&language=SPL",
		   "PRU"		:	"/spl/s9/S9_Home.asp?country=pru&language=SPL",
		   "ECU"		:	"/spl/s9/S9_Home.asp?country=ecu&language=SPL",
		   "PRI"		:	"/spl/s9/S9_Home.asp?country=PRI&language=SPL",
		   "PRI"		:	"/spl/s9/S9_Home.asp?country=PRI&language=SPL",
		   "CSR"		:	"/spl/s9/S9_Home.asp?country=csr&language=SPL",
		   "CSR"		:	"/spl/s9/S9_Home.asp?country=csr&language=SPL"
		   
		   
		   
		   
		   
		   
		   
		   
		   
		   

    }

	
		
 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];

			}

	

 }