Countryobj4 = {	

		"USA"    :	"http://www.store.motorola.com/mot/en/US/adirect/motorola?cmd=catProductDetail&productID=89131N&showAddButton=true"

    }

	
		
 function GoToCountry4()

 {

			var myindex4 = document.countryselect4.dropdown4.selectedIndex

			var myCountry4 = document.countryselect4.dropdown4.options[myindex4].value

			var myURL4 = "";



			if (myCountry4 == "-1"){

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

			}

			else

			{

				myURL4 = Countryobj4[myCountry4];

				myURL4 = myURL4.toLowerCase();

				

				document.location.href = Countryobj4[myCountry4];

			}

	

 }