Countryobj3 = {	

		"DEU"    :	"http://www.hellomoto-shop.de/lshop,showdetail,1200696038-10611,d,1200696090-10699,,CFLN7401,,0Tsuche--T805,.htm"
		
    }

	
		
 function GoToCountry3()

 {

			var myindex3 = document.countryselect3.dropdown3.selectedIndex

			var myCountry3 = document.countryselect3.dropdown3.options[myindex3].value

			var myURL3 = "";



			if (myCountry3 == "-1"){

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

			}

			else

			{

				myURL3 = Countryobj3[myCountry3];

				myURL3 = myURL3.toLowerCase();

				

				document.location.href = Countryobj3[myCountry3];

			}

	

 }