Countryobj2 = {	

		"BRA"    :	"http://shop-br.motorola.com/site/content/produtos/acessorio_det.asp?id=273&fl=",
		"DEU"    :	"http://www.hellomoto-shop.de/lshop,showdetail,1200504284-16595,d,1200504320-16773,accessoires.bluetooth,CFLN6203,,0Tshowrub--accessoires.bluetooth,.htm",
		"GBR"    :	"http://www.motorola-shop.co.uk/accessories/s9-stereo-bluetooth-headset/",
		"USA"    :	"http://www.store.motorola.com/mot/en/US/adirect/motorola?cmd=catProductDetail&productID=98801N-SYN0847A&showAddButton=true"

    }

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

			}

	

 }