Countryobj2 =
 {	



"AUS" : "http://direct.motorola.com/ENA/bluetooth/au/bluetooth-solutions-for-the-car.html",
"DNK" : "http://www.motorola.com/consumer/v/index.jsp?vgnextoid=6d24f34f567f3110VgnVCM1000008206b00aRCRD&show=accessoryCategoryHome&sid=dd031787c85c9010VgnVCM1000008206b00aRCRD&catName=Car+Kits",
"GER" : "http://www.motorola.com/consumer/v/index.jsp?vgnextoid=6b50c88689e86110VgnVCM1000008206b00aRCRD&show=accessoryCategoryHome&sid=dd031787c85c9010VgnVCM1000008206b00aRCRD&catName=Car+Kits",
"GRC" : "http://www.motorola.com/consumer/v/index.jsp?vgnextoid=4dfe5004ed2c8110VgnVCM1000008206b00aRCRD&show=accessoryCategoryHome&sid=dd031787c85c9010VgnVCM1000008206b00aRCRD&catName=Car+Kits",
"NLD" : "http://www.motorola.com/consumer/v/index.jsp?vgnextoid=fa4386c5409d3110VgnVCM1000008206b00aRCRD&show=accessoryCategoryHome&sid=dd031787c85c9010VgnVCM1000008206b00aRCRD&catName=Car+Kits",
"ESP" : "http://www.motorola.com/consumer/v/index.jsp?vgnextoid=f81ce8ecfc729110VgnVCM1000008206b00aRCRD&show=accessoryCategoryHome&sid=dd031787c85c9010VgnVCM1000008206b00aRCRD&catName=Car+Kits",
"ITA" : "http://www.motorola.com/consumer/v/index.jsp?vgnextoid=2a9788a33d4b3110VgnVCM1000008206b00aRCRD&show=accessoryCategoryHome&sid=dd031787c85c9010VgnVCM1000008206b00aRCRD&catName=Car+Kits",
"FRA" : "http://www.motorola.com/consumer/v/index.jsp?vgnextoid=6937f33948614110VgnVCM1000008206b00aRCRD&show=accessoryCategoryHome&sid=dd031787c85c9010VgnVCM1000008206b00aRCRD&catName=Car+Kits",
"RUS" : "http://www.motorola.com/consumer/v/index.jsp?vgnextoid=aa67bc593a784110VgnVCM1000008206b00aRCRD&show=accessoryCategoryHome&sid=dd031787c85c9010VgnVCM1000008206b00aRCRD&catName=Car+Kits",
"GBR" : " http://www.motorola.com/consumer/v/index.jsp?vgnextoid=576f1cb8134b2110VgnVCM1000008206b00aRCRD&show=accessoryCategoryHome&sid=dd031787c85c9010VgnVCM1000008206b00aRCRD&catName=Car+Kits",
"USA" : "http://direct.motorola.com/ENS/T505/T505_Home.asp"


}





	
		
 function GoToCountry2()

 {

			var myindex2 = document.countryselect2.dropdown2.selectedIndex

			var myCountry2 = document.countryselect2.dropdown2.options[myindex2].value

			var myURL2 = "";



			if (myCountry2 == "-1"){

				alert("please select a country/region");

			}

			else

			{

				myURL2 = Countryobj2[myCountry2];

				myURL2 = myURL2.toLowerCase();

				

				document.location.href = Countryobj2[myCountry2];

			}

	

 }