Countryobj2 = {			
						"USA"    :	"http://www.store.motorola.com/mot/en/US/adirect/motorola?cmd=catProductDetail&showAddButton=true&productID=89242N"
	
    }	
		
 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];			}	 }