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