Countryobj = {
	
		"AFR"    :	"http://za.motorola.com/af/motokrzr/",
		"AME"    :	"http://sg.motorola.com/motokrzr/index.html",
		"ARE"    :	"http://sg.motorola.com/motokrzr/index.html",
		"ARG"    :	"http://www.motorola.com/consumer/v/index.jsp?vgnextoid=a80dc99432caf010VgnVCM1000008206b00aRCRD&show=productHome",
		"AUS"    :	"http://www.motorola.com/consumer/v/index.jsp?vgnextoid=6fffd15ea6f5d010VgnVCM1000008206b00aRCRD&show=productHome",
		"AUT"    :	"http://www.shopmotorola.ca/emea/promotion/KRZR/at/",
		"BRA"    :	"http://direct.motorola.com/PRL/web_producthome.asp?Country=BRA&language=PRL&productid=30639",
		"COL"    :	"http://www.motorola.com/consumer/v/index.jsp?vgnextoid=146472af28ebf010VgnVCM1000008206b00aRCRD&show=productHome",
		"CHN"    :	"http://www.motorola.com.cn/MOTOKRZR/#",
		
		"CHE"    :	"http://www.shopmotorola.ca/emea/promotion/KRZR/chd/",
		"CHF"    :	"http://www.shopmotorola.ca/emea/promotion/KRZR/chf/",
		
		"CZE"    :	"http://www.shopmotorola.ca/emea/promotion/KRZR/cz/",
		"DNK"    :	"http://89.234.0.72/clients/motorola/krzr_launch/dnk",
		"DEU"    :	"http://www.shopmotorola.ca/emea/promotion/krzr/de",
		"GRE"    :	"http://www.shopmotorola.ca/emea/promotion/KRZR/gr/",	
		"FRA"    :	"http://www.shopmotorola.ca/emea/promotion/krzr/fr",
		"FNL"    :	"http://89.234.0.72/clients/motorola/krzr_launch/fin",
		"HUN"	   :	"http://89.234.0.72/clients/motorola/krzr_launch/hun/",

		"IND"    :	"http://in.motorola.com/motokrzr/",
		"IRL"    :	"http://www.shopmotorola.ca/emea/promotion/krzr/ie",
		"ITA"	 :      "http://www.shopmotorola.ca/emea/promotion/krzr/it/",
		"KEN"    :	"http://za.motorola.com/ke/motokrzr/",
		"LTU"    :	"http://89.234.0.72/clients/motorola/krzr_launch/ltu",
		"MYS"    :	"http://malaysia.motorola.com/motokrzr/",
		"MEX"    :	"http://direct.motorola.com/SPL/web_producthome.asp?Country=MEX&language=SPL&productid=30639",
		"NGA"    :	"http://za.motorola.com/ng/motokrzr/",
		
		
		
		"NLD"    :	"http://www.shopmotorola.ca/emea/promotion/KRZR/nl/",
		"NOR"    :	"http://89.234.0.72/clients/motorola/krzr_launch/nor",
		
		"PER"    :	"http://direct.motorola.com/SPL/web_producthome.asp?Country=PRU&language=SPL&productid=30639",
		"PAK"    :	"http://direct.motorola.com/ENA/Web_ProductHome.asp?country=PAE&language=ENA&productid=30598",
		"PHL"    :	"http://ph.motorola.com/motokrzr/",
		"POL"    :      "http://www.shopmotorola.ca/emea/promotion/krzr/pl",
		"POR"    :	"http://www.shopmotorola.ca/emea/promotion/KRZR/pt/",
		"RUS"    :	"http://www.shopmotorola.ca/emea/promotion/krzr/ru/",
		"SGP"    :	"http://sg.motorola.com/motokrzr",
		"SAF"    :	"http://za.motorola.com/motokrzr/",
		

		"ESP"    :	"http://www.shopmotorola.ca/emea/promotion/krzr/es",
		"SWE"    :   "http://89.234.0.72/clients/motorola/krzr_launch/swe",
		"SVK"    :	"http://89.234.0.72/clients/motorola/krzr_launch/svk/",
		"SVN"    :	"http://89.234.0.72/clients/motorola/krzr_launch/svn/",
		"THA"    :	"http://th.motorola.com/motokrzr/",
		"TUR"    :	"http://www.motorola.com/consumer/v/index.jsp?vgnextoid=f2fe6b2a81b5e010VgnVCM1000008206b00aRCRD&show=productHome",
		"GBR"    :	"http://www.shopmotorola.ca/emea/promotion/krzr/uk",
		"USA"    :	"http://promo.motorola.com/krazr/index.html",
		"VEN"    :	"http://www.motorola.com/consumer/v/index.jsp?vgnextoid=a0ba082fcb840110VgnVCM1000008206b00aRCRD&show=productHome",
		"VNM"    :	"http://vn.motorola.com/motokrzr/",	
                "ROM"    :      "/RUM/Web_ProductHome.asp?country=ROM&language=RUM&productid=30598"   
		
    }


 function GoToCountry()
 {
			var myindex = document.txt_country.country.selectedIndex
			var myCountry = document.txt_country.country.options[myindex].value
			var myURL = "";
			if (myCountry == ""){
				validateOnSubmit();
				return false;
			}
			else
			{ 
				myURL = Countryobj[myCountry];
				myURL = myURL.toLowerCase();
				document.location.href = Countryobj[myCountry];
				/*alert("country code: " + document.txt_country.country.value);*/
				/*document.txt_country.country.value.submit();*/
			 }
}


