Countryobj3 = {	


		"GBR"    :	"http://www.motorola-shop.co.uk/accessories/h12-bluetooth-headset-/?WT.mc_id=motopureH12lp_GBR&txt_country=GBR&country=United Kingdom",
		"USA"    :	"http://www.store.motorola.com/mot/en/US/adirect/motorola?cmd=catProductDetail&productID=89184N&showAddButton=true?WT.mc_id=motopureH12lp_USA&txt_country=USA&country=United States"

    }

	
		
 function GoToCountry3()

 {

			var myindex3 = document.countryselect3.dropdown3.selectedIndex

			var myCountry3 = document.countryselect3.dropdown3.options[myindex3].value

			var myURL3 = "";



			if (myCountry3 == "-1"){

				alert("please select a country/region");

			}

			else

			{

				myURL3 = Countryobj3[myCountry3];

				myURL3 = myURL3.toLowerCase();

				

				document.location.href = Countryobj3[myCountry3];

			}

	

 }