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;