Countryobj = {	
		"GBR"    :	"http://direct.motorola.com/ENS/EQ7/EQ7_Home.asp?country=GBR&language=ENG",
		"USA"    :	"http://www.motorola.com/consumers/v/index.jsp?vgnextoid=6b5937d55f17a110VgnVCM1000008406b00aRCRD&vgnextchannel=928b32a609e89110VgnVCM1000008406b00aRCRD"    }
 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];			
 }	 }