<!--
	function ShowNav(DivToShow)
	{
		document.getElementById(DivToShow).style.display = "block";	
	}

	function HideNav(DivToHide)
	{
		document.getElementById(DivToHide).style.display = "none";	
				
	}
	
	function ShowNavAndBottom(DivToShow, DivBottomToShow)
	{
		document.getElementById(DivToShow).style.display = "block";				
		document.getElementById(DivBottomToShow).style.display = "block";	
		
	}

	function HideNavAndBottom(DivToHide, DivBottomToHide)
	{
		document.getElementById(DivToHide).style.display = "none";
		document.getElementById(DivBottomToHide).style.display = "none";
	}	
-->

