<!--
// -------------------------------------------------------------------------------------

function setMenuClass (id, cls)
{
  document.getElementById(id + "a").className = cls;
  document.getElementById(id + "b").className = cls;

  return true;
}

// -------------------------------------------------------------------------------------

function showContent (id, show)
{
  if (show == true)
    document.getElementById(id).style.visibility = "visible";
  else
    document.getElementById(id).style.visibility = "hidden";

  return true;
}

// -------------------------------------------------------------------------------------
-->
