/*--------------------------------------------------------
Jump menu for BOR Meeting Minutes
-----------------------------------------------------------*/

function fnGo(form1) {
	var selectBox = form1.quicklinks;
	var sDestination = '';
	if(selectBox.selectedIndex > 0) {
		sDestination = selectBox.options[selectBox.selectedIndex].value;
		document.location = sDestination;
	}
}
