<!-- Begin
// How many pixels from the top to display the content
var topOffset = 0

function keepAlive() {
	// Move the content into view
	document.all.navBar.style.pixelTop = document.body.scrollTop + topOffset
}

function doLoad() {
	// Initialize DHTMLLib
	setup()
	// When the page scrolls, move the content
	window.onscroll = keepAlive;
	// Initialize the position
	keepAlive()
}
window.onload = doLoad;
// End -->

