 	<!--
	  
	 // Store URLs in an array. These must match the elements in the 
	//  pulldown. In this example, the first element is the pulldown 
	//  says 'Select a URL', thus mySelect_URLs[0] contains an empty
	//  string. Note in this case that the name of the URL array
	//  is mapped to that of the Menu. This is assumed in the 
	//  function below.
	var stateSelect_URLs = new Array();
	stateSelect_URLs[0] = "";
	stateSelect_URLs[1] = "non_co.htm"; <!-- place appropriate url -->
	stateSelect_URLs[2] = "non_co.htm";
	stateSelect_URLs[3] = "non_co.htm";
	stateSelect_URLs[4] = "non_co.htm";
	stateSelect_URLs[5] = "non_co.htm";
	stateSelect_URLs[6] = "home.htm";
	stateSelect_URLs[7] = "non_co.htm";
	stateSelect_URLs[8] = "non_co.htm";
	stateSelect_URLs[9] = "non_co.htm";
	stateSelect_URLs[10] = "non_co.htm";
	stateSelect_URLs[11] = "non_co.htm";
	stateSelect_URLs[12] = "non_co.htm";
	stateSelect_URLs[13] = "non_co.htm";
	stateSelect_URLs[14] = "non_co.htm";
	stateSelect_URLs[15] = "non_co.htm";
	stateSelect_URLs[16] = "non_co.htm";
	stateSelect_URLs[17] = "non_co.htm";
	stateSelect_URLs[18] = "non_co.htm";
	stateSelect_URLs[19] = "non_co.htm";
	stateSelect_URLs[20] = "non_co.htm";
	stateSelect_URLs[21] = "non_co.htm";
	stateSelect_URLs[22] = "non_co.htm";
	stateSelect_URLs[23] = "non_co.htm";
	stateSelect_URLs[24] = "non_co.htm";
	stateSelect_URLs[25] = "non_co.htm";
	stateSelect_URLs[26] = "non_co.htm";
	stateSelect_URLs[27] = "non_co.htm";
	stateSelect_URLs[28] = "non_co.htm";
	stateSelect_URLs[29] = "non_co.htm";
	stateSelect_URLs[30] = "non_co.htm";
	stateSelect_URLs[31] = "non_co.htm";
	stateSelect_URLs[32] = "non_co.htm";
	stateSelect_URLs[33] = "non_co.htm";
	stateSelect_URLs[34] = "non_co.htm";
	stateSelect_URLs[35] = "non_co.htm";
	stateSelect_URLs[36] = "non_co.htm";
	stateSelect_URLs[37] = "non_co.htm";
	stateSelect_URLs[38] = "non_co.htm";
	stateSelect_URLs[39] = "non_co.htm";
	stateSelect_URLs[40] = "non_co.htm";
	stateSelect_URLs[41] = "non_co.htm";
	stateSelect_URLs[42] = "non_co.htm";
	stateSelect_URLs[43] = "non_co.htm";
	stateSelect_URLs[44] = "non_co.htm";
	stateSelect_URLs[45] = "non_co.htm";
	stateSelect_URLs[46] = "non_co.htm";
	stateSelect_URLs[47] = "non_co.htm";
	stateSelect_URLs[48] = "non_co.htm";
	stateSelect_URLs[49] = "non_co.htm";
	stateSelect_URLs[50] = "non_co.htm";

// 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 name of the pulldown menu.
function jumpToURL(formName,menuName) {
 var obj = eval("document." + formName + "." + menuName);
 var index = obj.selectedIndex;
 var url = eval(menuName + "_URLs[" + index + "]");
 if (url != "") {
   location.href=url;
 }
}
 	//-->



