	function showPaneControl(PaneId)
	{
		document.getElementById('paneControlBar' + PaneId).style.zIndex = 15;
		document.getElementById('paneControlLayer' + PaneId).style.visibility = "visible";
		document.getElementById('paneButtonLayer' + PaneId).style.backgroundColor = "#EEE6DE";
	}
	function hidePaneControl(PaneId)
	{
		document.getElementById('paneControlBar' + PaneId).style.zIndex = 5;
		document.getElementById('paneControlLayer' + PaneId).style.visibility = "hidden";
		document.getElementById('paneButtonLayer' + PaneId).style.backgroundColor = "#DCCDBC";
	}	
	
	
	function showModuleControl(controlId, buttonId)
	{
		document.getElementById(controlId).style.visibility = "visible";
	}
	function hideModuleControl(controlId, buttonId)
	{
		document.getElementById(controlId).style.visibility = "hidden";
	}