function toggleSection(button, listId) {
   var list = document.getElementById(listId);
   if (list.className == 'no-display') {
      list.className = 'display';
      button.src = '../images/collapse.gif';
   } else {
      list.className = 'no-display';
      button.src = '../images/expand.gif';
   }
}
