
<!-- Hide script from older browsers
	function newWindow(file) {
		bookWindow = window.open(file, 'bookWin','toolbar=no,scrollbars=yes,location=no,directories=no,status=no,resizable,width=400,height=300')
		bookWindow.focus()
	}
	
	function DataWindow(file) {
		bookWindow = window.open(file, 'bookWin','toolbar=no,scrollbars=yes,location=no,directories=no,status=no,resizable,width=300,height=300')
		bookWindow.focus()
	}
	
	function CardTextWindow(file) {
		bookWindow = window.open(file, 'bookWin','toolbar=no,scrollbars=yes,location=no,directories=no,status=yes,resizable,width=300,height=440')
		bookWindow.focus()
	}
	
// JUMP PAGE FOR DROP-DOWN MENU		
	function jumpPage(newLoc) {
			newPage = newLoc.options[newLoc.selectedIndex].value
				if (newPage != "") {
				window.location.href = newPage
			}
		}
		
// GET OUT OF FRAMES
//if (window!= top)
//top.location.href=location.href
		
// End hiding script from old browsers -->