Countryobj = {			
		"GBR"    :	"http://direct.motorola.com/ENS/H680/H680_Home.asp?country=GBR&language=ENG",
		"USA"    :	"http://direct.motorola.com/ENS/H680/H680_Home.asp?country=USA&language=ENS"    }	
		
 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];			
 }	 }