/*

 function goMenu(ele)
 
 A function for turning a html form select menu into a navigation device.
 
 arg ele   = document.form.element - The form element from which the function was called.
 var where = The selected item in the pop list - should be a URI.

 */

function goMenu(ele) {

	var where = ele.options[ele.selectedIndex].value;

	if (where != "") {

		location.href = where;

	} else {

		alert("Oops, the selection you made\nwon't take you anywhere.\n\nTry selecting again!");

	}

}

