
var countrySelect_URLs = new Array();
countrySelect_URLs["en_SG"] = "home.html";
countrySelect_URLs["en_AU"] = "home.html";
countrySelect_URLs["en_NZ"] = "home.html";
countrySelect_URLs["en_TH"] = "home.html";
countrySelect_URLs["en_MY"] = "home.html";
countrySelect_URLs["en_IN"] = "home.html";
countrySelect_URLs["en_ID"] = "home.html";
countrySelect_URLs["en_HK"] = "home.html";
countrySelect_URLs["en_PH"] = "home.html";
countrySelect_URLs["en_VN"] = "home.html";
countrySelect_URLs["zh_SC"] = "http://h20427.www2.hp.com/program/hprenew/cn/zh/home.html";
countrySelect_URLs["kr_KR"] = "http://www.hp.co.kr/hprenew/";
countrySelect_URLs["zh_TW"] = "http://www.hp.com.tw/hprenew/";
countrySelect_URLs["ja_JP"] = "http://www.hp.com/jp/hprenew";


	// Function to jump to a URL in a <select> menu
	//  In this case, the name of the array containing the URLs
	//  is determined based on the option value of the pulldown menu selection.
	function jumpToURL(formName,menuName) {
	
	 var obj = eval("document." + formName + "." + menuName);
	 var index = obj.value;
	 
	 var url = eval(menuName + "_URLs[index]");
	 if (index != "") {
	   location.href=url;
	 }
	}