
function jumpPage(newLoc) {
	newPage = newLoc.options[newLoc.selectedIndex].value

	if (newPage != "") {
		window.location.href = newPage
	}
}

function newWindow(bioTextWin) {
	bioWindow = window.open(bioTextWin,
		'bioWin', 'width=550,height=600,resize=yes,toolbar=no,location=no,scrollbars=yes')
	bioWindow.focus()
}
