Countryobj2 = {	

		"GBR"    :	"http://www.motorola-shop.co.uk/accessories/h710-bluetooth-headset/",
		"USA"    :	"http://www.store.motorola.com/mot/en/US/adirect/motorola?cmd=catProductDetail&productID=89183N-PACK&showAddButton=true&WT.mc_ev=click&WT.mc_id=20080210_ecomcpa_buynow"
		
    }

	
		
 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];

			}

	

 }