function UpdateLocation(FormObj) {
	var NewLocation = FormObj.location.options[FormObj.location.selectedIndex].value;
	if (NewLocation!="") {
		document.location.href = NewLocation;
		}
	else {
		alert("Please select a choice from the menu")
		}
	}