<!-- HideIt 

function enforcehome() {
    // Very specific frame confirmation
    var urlpattern = /www.pistoncoating.com/;
    // window.alert(parent.location.search.substring(1));
    if (!urlpattern.test(top.location.href)) {
        top.location.href="http://www.pistoncoating.com/"; 
    }
    if (top.document.location.href == "http://www.pistoncoating.com/home.htm") {
        top.location.href="http://www.pistoncoating.com/"; 
    }
}

// DHTMLLIB function
function keepAlive() {
	// Move the content into view
	document.all.navBar.style.pixelTop = document.body.scrollTop + topOffset
}

// DHTMLLIB function
function doLoad() {
	// Initialize DHTMLLib
	setup()
	// When the page scrolls, move the content
	window.onscroll = keepAlive;
	// Initialize the position
	keepAlive()
}
// --> 

