// HPWEB JAVASCRIPT halo_country_pulldown_ov2_sw.js VERSION 1.0

	// Store URLs in an array. Match the country code to 
	// the corresponding option value on the welcome.html page.  
	// More than one option value on the welcome page may reference 
	// a single value on this page.  
	// Updated 5/3/06 mbrunot


var countrySelect_URLs = new Array();
countrySelect_URLs["pt_BR"] = "http://h71028.www7.hp.com/enterprise/br/pt/halo/index.html";
countrySelect_URLs["zh_CN"] = "http://h71028.www7.hp.com/enterprise/cn/zh/halo/index.html";
countrySelect_URLs["fr_FR"] = "http://h71028.www7.hp.com/enterprise/fr/fr/halo/index.html";
countrySelect_URLs["de_DE"] = "http://h71028.www7.hp.com/enterprise/de/de/halo/index.html";
countrySelect_URLs["it_IT"] = "http://h71028.www7.hp.com/enterprise/it/it/halo/index.html";
countrySelect_URLs["ja_JP"] = "http://h71028.www7.hp.com/enterprise/jp/ja/halo/index.html";
countrySelect_URLs["ko_KR"] = "http://h71028.www7.hp.com/enterprise/kr/ko/halo/index.html";
countrySelect_URLs["es_ES"] = "http://h71028.www7.hp.com/enterprise/es/es/halo/index.html";
countrySelect_URLs["zh_TW"] = "http://h71028.www7.hp.com/enterprise/tw/zh/halo/index.html";
countrySelect_URLs["en_US"] = "http://h71028.www7.hp.com/enterprise/us/en/halo/index.html";



	// 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;
	 }
	}
	