<!--
menu_status = new Array();

function showHide(theid,controlX)
{    
   try
    {
      if (document.getElementById) 
      {
        var switch_id = document.getElementById(theid);
        var control = document.getElementById(controlX);

        if(menu_status[theid] != 'show') 
        {
           switch_id.className = 'show';
           menu_status[theid] = 'show';              
          control.innerText='-';
          control.textContent='-';                                                           
        }
        else
        {
           switch_id.className = 'hide';
           menu_status[theid] = 'hide';          
           control.innerText='+';
           control.textContent='+';        
        }
      }
    }
    catch(err)
    {
    }
}

//-->

