function toggleSection(section){
  if(document.getElementById(section).style.display == ''){
    document.getElementById(section).style.display = 'none';
  }else{
    document.getElementById(section).style.display = '';
  }
}