// Hide a menu entry
function hideMenu(id)
{
	try
	{
		document.getElementById(id).style.display = "none";
	}
	catch(err)
	{

	}
}

// Show a menu entry
function showMenu(id)
{
	try
	{
		document.getElementById(id).style.display = "block";
	}
	catch(err)
	{

	}
}
