// JavaScript Document

function GoService(selectElementId)  
{  
     var selectElement = document.getElementById(selectElementId);  
     var selectedURL = selectElement.options[selectElement.selectedIndex].value; 
     window.location.href = (selectedURL); 
 
     return true;
}

function go()
{
	var boxes = document.getElementsByName('navi');
	if (boxes.length < 1)
		return;
		
	box = boxes[0];
	destination = box.options[box.selectedIndex].value;
	if (destination)
		location.href = destination;
}