
	function go()
	{
		box = document.forms[0].navi;
		destination = box.options[box.selectedIndex].value;
		if (destination) location.href = destination;
	}

	function go2()
	{
		box = document.forms[1].navi;
		destination = box.options[box.selectedIndex].value;
		if (destination) location.href = destination;
	}

	function go3()
	{
		box = document.forms[2].navi;
		destination = box.options[box.selectedIndex].value;
		if (destination) location.href = destination;
	}

