// JavaScript Document
     
     var activeItem;
     function showContent(divId,linkObj){
          var divObj = document.getElementById(divId);
          if(activeItem && activeItem!=divObj){     // Close previous opened item
               activeItem.style.display='none';     // The value of the checkbox matches the id of the div
          }
          var style='none';          
          if(divObj.style.display=='none')style='inline';     
          divObj.style.display=style;          
          activeItem = divObj;     
     }
      
     var activeSection;
     function showSection(tableId,linkObj){
          var tableObj = document.getElementById(tableId);
          if(activeSection && activeSection!=tableObj){     // Close previous opened item
               activeSection.style.display='none';     // The value of the checkbox matches the id of the div
          }
          var style='none';          
          if(tableObj.style.display=='none')style='inline';     
          tableObj.style.display=style;          
          activeSection = tableObj;     
     }
