// JavaScript Document

<!--

function hidePanels() {
	document.getElementById('products').style.display = 'none';
}

function showPanel(panel) {
	document.getElementById(panel).style.display = 'block';
}

//-->
