Countryobj = {	

		"AUT"    :	"http://www.motorola.com/consumer/v/index.jsp?vgnextoid=7129738f3cdd3110VgnVCM1000008206b00aRCRD&show=accessoryCategoryHome&sid=69531787c85c9010VgnVCM1000008206b00aRCRD&catName=Headsets",
		"BEL"    :	"http://www.motorola.com/consumer/v/index.jsp?vgnextoid=440953f5f3744110VgnVCM1000008206b00aRCRD&show=accessoryCategoryHome&sid=69531787c85c9010VgnVCM1000008206b00aRCRD&catName=Headsets",
		"CZE"    :	"http://www.motorola.com/consumer/v/index.jsp?vgnextoid=2a0d06b629c84110VgnVCM1000008206b00aRCRD&show=accessoryCategoryHome&sid=69531787c85c9010VgnVCM1000008206b00aRCRD&catName=Headsets",
		"DEU"    :	"http://www.motorola.com/consumer/v/index.jsp?vgnextoid=e029b3ac62eb3110VgnVCM1000008206b00aRCRD&show=accessoryCategoryHome&sid=69531787c85c9010VgnVCM1000008206b00aRCRD&catName=Headsets",
		"GRC"    :	"http://www.motorola.com/consumer/v/index.jsp?vgnextoid=c1d13d7059884110VgnVCM1000008206b00aRCRD&show=accessoryCategoryHome&sid=69531787c85c9010VgnVCM1000008206b00aRCRD&catName=Headsets",
		"HUN"    :	"http://www.motorola.com/consumer/v/index.jsp?vgnextoid=92c44ff607735110VgnVCM1000008206b00aRCRD&show=accessoryCategoryHome&sid=69531787c85c9010VgnVCM1000008206b00aRCRD&catName=Headsets",
		"ITA"    :	"http://www.motorola.com/consumer/v/index.jsp?vgnextoid=2a9788a33d4b3110VgnVCM1000008206b00aRCRD&show=accessoryCategoryHome&sid=69531787c85c9010VgnVCM1000008206b00aRCRD&catName=Headsets",
		"NLD"    :	"http://www.motorola.com/consumer/v/index.jsp?vgnextoid=fa4386c5409d3110VgnVCM1000008206b00aRCRD&show=accessoryCategoryHome&sid=69531787c85c9010VgnVCM1000008206b00aRCRD&catName=Headsets",
		"POL"    :	"http://www.motorola.com/consumer/v/index.jsp?vgnextoid=1e87d6ddb17d4110VgnVCM1000008206b00aRCRD&show=accessoryCategoryHome&sid=69531787c85c9010VgnVCM1000008206b00aRCRD&catName=Headsets",
		"PRT"    :	"http://www.motorola.com/consumer/v/index.jsp?vgnextoid=5dfba5c91fe44110VgnVCM1000008206b00aRCRD&show=accessoryCategoryHome&sid=69531787c85c9010VgnVCM1000008206b00aRCRD&catName=Headsets",
		"SWZ"    :	"http://www.motorola.com/consumer/v/index.jsp?vgnextoid=0241b4a927dc3110VgnVCM1000008206b00aRCRD&show=accessoryCategoryHome&sid=69531787c85c9010VgnVCM1000008206b00aRCRD&catName=Headsets",
		"GBR"    :	"http://www.motorola.com/consumer/v/index.jsp?vgnextoid=576f1cb8134b2110VgnVCM1000008206b00aRCRD&show=accessoryCategoryHome&sid=69531787c85c9010VgnVCM1000008206b00aRCRD&catName=Headsets",
		"USA"    :	"http://direct.motorola.com/ens/H710/H710_Home.asp?country=USA&language=ENS"

    }

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

			}

	

 }