Countryobj2 = {	

		"CHN"    :	"http://www.motostore.com.cn/motorola-H800%E8%93%9D%E7%89%99%E8%80%B3%E6%9C%BA-%E8%93%9D%E8%89%B2-93.htm",
		"DEU"    :	"http://www.hellomoto-shop.de/lshop,showdetail,1200697170-12509,d,1200697422-13388,,CFLN6018,,0Tsuche--H800,.htm",
		"GBR"    :	"http://www.motorola-shop.co.uk/accessories/h800-bluetooth-headset/",
		"USA"    :	"http://www.store.motorola.com/mot/en/US/adirect/motorola?cmd=catProductDetail&productID=98797N&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];

			}

	

 }