Countryobj = {	
  
                "CHN"   :       "http://e8.motorola.com.cn/",
                "FRA"   :       "http://www.motorola.com/consumer/v/index.jsp?vgnextoid=a03efc8ffa05a110VgnVCM1000008206b00aRCRD&show=productHome",
                "DEU"   :       "http://www.motorola.com/consumer/v/index.jsp?vgnextoid=b5f7c0f738a4a110VgnVCM1000008206b00aRCRD&show=productHome",
                "GRC"   :       "http://www.motorola.com/consumer/v/index.jsp?vgnextoid=338e77eb6832a110VgnVCM1000008206b00aRCRD&show=productHome",
                "IND"   :       "http://www.motorola.com/consumer/v/index.jsp?vgnextoid=051b505dd8e29110VgnVCM1000008206b00aRCRD&show=productHome",
                "ITA"   :       "http://www.motorola.com/consumer/v/index.jsp?vgnextoid=e5f270654e4c9110VgnVCM1000008206b00aRCRD&show=productHome",
                "NLD"   :       "http://www.motorola.com/consumer/v/index.jsp?vgnextoid=1f8fb3d84170a110VgnVCM1000008206b00aRCRD&show=productHome",
                "SGP"   :       "http://www.motorola.com/consumer/v/index.jsp?vgnextoid=31f9f2faeed49110VgnVCM1000008206b00aRCRD&show=productHome",
                "ESP"   :       "http://www.motorola.com/consumer/v/index.jsp?vgnextoid=cf3ecd96cea0a110VgnVCM1000008206b00aRCRD&show=productHome",
                "GBR"   :       "http://www.motorola.com/consumer/v/index.jsp?vgnextoid=770dfe6b2e5e9110VgnVCM1000008206b00aRCRD&show=productHome",
		"USA"   :	"http://promo.motorola.com/e8/index.html"
    }

	
		
 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];

			}

	

 }