Countryobj2 = {	

		"FRA"    :	"http://www.motorola.com/consumer/v/index.jsp?vgnextoid=47e03d647f257110VgnVCM1000008206b00aRCRD&show=productHome",
                "DEU"   :	"http://www.motorola.com/consumer/v/index.jsp?vgnextoid=482f452de7be7110VgnVCM1000008206b00aRCRD&show=productHome",
                "ITA"     :	"http://www.motorola.com/consumer/v/index.jsp?vgnextoid=e5d5cc3bd4957110VgnVCM1000008206b00aRCRD&show=productHome",
                "NLD"    :	"http://www.motorola.com/consumer/v/index.jsp?vgnextoid=ac72f2740efc7110VgnVCM1000008206b00aRCRD&show=productHome",
                "RUS"    :	"http://emeapromotions.motorola.com/ru/pinkvpurple/",
                "CHE"    :	"http://www.motorola.com/consumer/v/index.jsp?vgnextoid=fe2ae08688c87110VgnVCM1000008206b00aRCRD&show=productHome",
                "GBR"    :	"http://emeapromotions.motorola.com/uk/pinkvpurple/"
    }

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

			}

	

 }