function toggleDiv(id) {
  var theDiv = document.getElementById(id);
  if (!theDiv.style.display) {
    theDiv.style.display = 'none';
  }
  if (theDiv.style.display == 'none') {
    theDiv.style.display = 'block';
  } else {
    theDiv.style.display = 'none';
  }
}
