
var countrySelect_URLs = new Array();
countrySelect_URLs["en_AU"] = "http://h20423.www2.hp.com/program/fraud/au/en/fraud.asp";
countrySelect_URLs["en_SG"] = "http://h20423.www2.hp.com/program/fraud/sg/en/fraud.asp";
countrySelect_URLs["en_NZ"] = "http://h20423.www2.hp.com/program/fraud/nz/en/fraud.asp";
countrySelect_URLs["en_TH"] = "http://h20423.www2.hp.com/program/fraud/TH/en/fraud.asp";
countrySelect_URLs["en_MY"] = "http://h20423.www2.hp.com/program/fraud/my/en/fraud.asp";
countrySelect_URLs["en_IN"] = "http://h20423.www2.hp.com/program/fraud/in/en/fraud.asp";
countrySelect_URLs["en_ID"] = "http://h20423.www2.hp.com/program/fraud/id/en/fraud.asp";
countrySelect_URLs["en_HK"] = "http://h20423.www2.hp.com/program/fraud/hk/en/fraud.asp";
countrySelect_URLs["en_PH"] = "http://h20423.www2.hp.com/program/fraud/ph/en/fraud.asp";
countrySelect_URLs["en_VN"] = "http://h20423.www2.hp.com/program/fraud/vn/en/fraud.asp";
countrySelect_URLs["zh_HK"] = " http://h20423.www2.hp.com/program/fraud/hk/zh/fraud.asp";

	// 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;
	 }
	}