function menuhome(aURL)
{
  resetmenus();
  top.location = aURL;
}

function menuclick(obj, aURL)
{
  if (document.getElementById(obj).style.display == 'block')
    {
      document.getElementById(obj).style.display = 'none';
      parent.frames['fr_main'].location = '/diverse/blank_page.asp';
    }
  else
    {
      resetmenus();
      document.getElementById(obj).style.display = 'block';
      if (aURL != '')
        {
          parent.frames['fr_main'].location = aURL;
        }
      else
        {
          parent.frames['fr_main'].location = '/diverse/blank_page.asp';
        }
    }
}

function menuclickdirectURL(aURL)
{
  resetmenus();
  parent.frames['fr_main'].location=aURL;
}

function menuclickdirectURLParentFrame(aURL)
{
  resetmenus();
  parent.parent.frames['fr_main'].location=aURL;
}

function menuhome(aURL)
{
  resetmenus();
  top.location=aURL;
}


