  function toggleDiv(divid){
    if(document.getElementById(divid).style.height == 'auto'){
      document.getElementById(divid).style.height = '0px';
    }else{
      document.getElementById(divid).style.height = 'auto';
    }
  }
  
  