Countryobj = {	

		"AUT"    :	"http://www.hellomoto-shop.de/cgi-bin/lshop.cgi?action=showdetail&artnum=V8LUX",
		"CHN"    :	"http://www.motostore.com.cn/goods-893-V8%E9%BB%84%E9%87%91%E5%85%B8%E8%97%8F%E7%89%88.html",
		"DEU"    :	"http://www.hellomoto-shop.de/cgi-bin/lshop.cgi?action=showdetail&artnum=V8LUX",
		"USA"    :	"http://www.store.motorola.com/mot/en/US/adirect/motorola?cmd=catProductDetail&showAddButton=true&productID=93691XQBSA"

    }

	
		
 function GoToCountry()

 {

			var myindex = document.countryselect.dropdown.selectedIndex

			var myCountry = document.countryselect.dropdown.options[myindex].value

			var myURL = "";



			if (myCountry == "-1"){

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

			}

			else

			{

				myURL = Countryobj[myCountry];

				myURL = myURL.toLowerCase();

				

				document.location.href = Countryobj[myCountry];

			}

	

 }