﻿//==============================================================================
// @version:		1.0
// @modified:		24 April 2007
// @author:			Christopher Choyce
// @email:			chris@bizography.com
// @desc:				Utility file to go along with the dynamically generated menus
//==============================================================================


function ToggleMenu( MenuName )
{
	if( document.getElementById )
	{
		var menu = document.getElementById(MenuName);

		if( menu.style.visibility == "visible" )
			util_Hide( menu );
		else
			util_Show( menu );
	}
}

function util_ShowById( Layer, Display )
{
	util_Show( document.getElementById(Layer), Display );
}
function util_Show( Layer, Display )
{
	Layer.style.visibility = "visible";
	Layer.style.display = (Display ? Display : "block");
}

function util_Hide( Layer, Display )
{
	Layer.style.visibility = "hidden";
	Layer.style.display = (Display ? Display : "none");
}
