Countryobj = {	

 "BEL" : "http://www.motorola.com/consumer/v/index.jsp?vgnextoid=d7fed2d7a2104110VgnVCM1000008206b00aRCRD&show=productHome",

 "CZE" : "http://www.motorola.com/consumer/v/index.jsp?vgnextoid=fd33285edd403110VgnVCM1000008206b00aRCRD&show=productHome",

"DNK" : "http://www.motorola.com/consumer/v/index.jsp?vgnextoid=4d5f886352742110VgnVCM1000008206b00aRCRD&show=productHome",

"DEU" : "http://www.motorola.com/consumer/v/index.jsp?vgnextoid=469039b557422110VgnVCM1000008206b00aRCRD&show=productHome",

"IDN" : "http://www.motorola.com/consumer/v/index.jsp?vgnextoid=32183097ceaf2110VgnVCM1000008206b00aRCRD&show=productHome",

"ITA" : "http://www.motorola.com/consumer/v/index.jsp?vgnextoid=d835ca2e875c1110VgnVCM1000008206b00aRCRD&show=productHome&vgnextnoice=1&vgnextnomenu=1",

"SGP" : "http://www.motorola.com/consumer/v/index.jsp?vgnextoid=52e706e78a392110VgnVCM1000008206b00aRCRD&show=productHome",

"SAF" : "http://www.motorola.com/consumer/v/index.jsp?vgnextoid=146912f9af243110VgnVCM1000008206b00aRCRD&show=productHome",

"SWE" : "http://www.motorola.com/consumer/v/index.jsp?vgnextoid=82fdaa6a0b742110VgnVCM1000008206b00aRCRD&show=productHome",

"GBR" : "http://www.motorola.com/consumer/v/index.jsp?vgnextoid=b9dd73d8c47b1110VgnVCM1000008206b00aRCRD&show=productHome"
	
	
    }

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

			}

	

 }