Countryobj = {	

			"AUS"			:	"/hellomoto/aus/skype/",

			"IDN"			:	"/hellomoto/idn/skype",

			"MAL"			:	"/hellomoto/mys/skype",
			"AME"			:	"/hellomoto/ame/skype",

			"NZL"			:	"/hellomoto/nzl/skype",
			"PHI"			:	"/hellomoto/phl/skype",

			"SGP"			:	"/hellomoto/sgp/skype",			
			"SAF"			:	"/hellomoto/saf/skype/",

			"THA"			:	"/hellomoto/tha/skype",
			"GBR"			:	"/hellomoto/uk/skype",
			"USA"			:	"/hellomoto/us/skype"

      }
	
		
 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];
			}
	
 }