function godrop()
{
	box = document.forms[0].navi;
	destination = box.options[box.selectedIndex].value;
	if (destination.substr(0,7) == "http://") {
		window.open(destination,"mywindow"); 
	} else {
		location.href = destination;
	}
	//if (destination) location.href = destination;
}