
  /*****************************************************************
   *
   *****************************************************************/  
  function toggle_show(id)
  {
    if(document.getElementById(id).style.display == 'block')
    {
      document.getElementById(id).style.display = 'none'
    }
    else
    {
      document.getElementById(id).style.display = 'block';
    }
  }
  
  /*****************************************************************
   *
   *****************************************************************/  
  function toggle_custom(id)
  {
    if(document.getElementById(id).style.active == '')
    {
      //document.getElementById(id).style... = '';
    }
    else
    {
      //document.getElementById(id).style... = '';
    }
  }
  
  /*****************************************************************
   *
   *****************************************************************/     
  function activate_custom_staff_number(id)
  {
    document.getElementById('custom_staff_number'+id).disabled = false;
    document.getElementById('exactly'+id).style.visibility = 'visible';
    if(id == 5)
    {
      document.subscribe.custom_staff_le.value = '200';
      document.subscribe.custom_staff_le.focus();
      document.subscribe.custom_staff_le.select();
    }
    if(id == 6)
    {
      document.subscribe.custom_staff_me.value = '11';
      document.subscribe.custom_staff_me.focus();
      document.subscribe.custom_staff_me.select();
    }
  }
  
  /*****************************************************************
   *
   *****************************************************************/  
  function deactivate_custom_staff_number(id)
  {
    document.getElementById('custom_staff_number'+id).disabled=true;
    document.getElementById('exactly'+id).style.visibility = 'hidden';
  }
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
