//JavaScript for public safety drop-down menu


    function load(form) {
	var url = form.list.options[form.list.selectedIndex].value;
		if (url != "") {
			location.href = url; }
		else {
			alert ("You must choose campus from the menu");}
		return false;
		}
