Countryobj2 = {	


		"AUT"    :	"http://www.hellomoto-shop.at/lshop,showrub,1201105121-7732,o,1201105121-7732,accessoires.bluetooth,,,,.htm",
		"BRA"    :	"http://shop-br.motorola.com/site/content/produtos/acessorio_default.asp",
		"CAN"    :	"http://www.motorola.com/consumer/v/index.jsp?vgnextoid=0689b7976570b010VgnVCM1000008206b00aRCRD&tabRelId=f5186efc31f0b0106efc31f0b01005b3bc90____&tab=8cdf34599fa0b010VgnVCM1000008206b00aRCRD",
		"CHN"    :	"http://www.motostore.com.cn/moto-4-%E8%93%9D%E7%89%99%E4%BA%A7%E5%93%81.html",
		"DEU"    :	"http://www.hellomoto-shop.de/lshop,showrub,1201105228-8190,d,1201105228-8190,accessoires.bluetooth,,,,.htm",
		"MEX"    :	"http://shop-mx.motorola.com/site/content/produtos/acessorio_default.asp",
		"RUS"    :	"http://www.kupimoto.ru/objind.asp?ot=47",
		"ESP"    :	"http://motorola.vidisa.com/frame1.asp?codigo=MOCFLN6203&contenido=iframe_ficha.asp",
		"GBR"    :	"http://www.motorola-shop.co.uk/accessories/Bluetooth",
		"USA"    :	"http://www.store.motorola.com/mot/en/US/adirect/motorola?cmd=catDisplayStyle&catKey=600508"

    }

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

			}

	

 }