
// Modification Log:
// 17Oct04 MW: Created this include file

function jumpPage(newLoc) {

// Extract the new page from the form
newJumpPage = newLoc.options[newLoc.selectedIndex].value

// If found, open a new browser window with the document
if (newJumpPage != "") newWindow(newJumpPage)
} // End function jumpPage

function newWindow(newPage) {
	
if (newPage != "") {
	ascWin = window.open(newPage,'AlternateWindow','resizable=yes,toolbar=yes,menubar=yes,scrollbars=yes,width=650,height=400')
	if (ascWin) {
		ascWin.focus()
	} else {
		alert("You must disable your Pop-Up blocker to view this document.\nDocument is " + newPage)
	}
}

} // End function newWindow
	
function replacePage(newLoc) {
	newPage = newLoc.options[newLoc.selectedIndex].value

	if (newPage != "") {
		window.location = newPage
	}
} // End function replacePage
