function d(s) {return document.getElementById(s);}
function toggleDisplay(o)
{
  n = o.nodeName.toLowerCase();
  t = (
        n == "span"
        || n == "img"
        || n == "a"
      ) ? "inline" : "block";

  if (o.style)
      o.style.display =
        (o.style.display == t) ? "none" : t;
}
function doit(x, y)
{
//pr = document.location.href.substring(document.location.href.length - 6, document.location.href.length);

  toggleDisplay(d(x));
  fn = y.src.substring(y.src.length-8);
  if(fn == "plus.gif")
    y.src = "/images/minus.gif";
  else if(fn == "inus.gif")
    y.src = "/images/plus.gif";
  else
    y.src = "/images/dot.gif";

}

function changeit(url)
{
  window.location = url;
}

function dismenu(MI)
{

  MI.style.color = 'red';
//  alert(MI.Name.length);
//  MI.style.fontWeight = 'bold';
  MI.style.cursor = 'default';
  MI.onclick = '';
}