Countryobj = {			"FRA"    :	"http://www.motorola.com/consumer/v/index.jsp?vgnextoid=6937f33948614110VgnVCM1000008206b00aRCRD&show=accessoryCategoryHome&sid=69531787c85c9010VgnVCM1000008206b00aRCRD&catName=Headsets",
		"ITA"    :	"http://www.motorola.com/consumer/v/index.jsp?vgnextoid=2a9788a33d4b3110VgnVCM1000008206b00aRCRD&show=accessoryCategoryHome&sid=69531787c85c9010VgnVCM1000008206b00aRCRD&catName=Headsets",
		"GBR"    :	"http://direct.motorola.com/ENS/EQ5/EQ5_Home.asp?country=GBR&language=ENG",
		"USA"    :	"http://www.motorola.com/consumers/v/index.jsp?vgnextoid=f365f2a44027a110VgnVCM1000008406b00aRCRD&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];			
 }	 
 }