function textToggle(textBlockId) {
  textBlock = document.getElementById(textBlockId);
  if (textBlock.style.display == 'none') { textBlock.style.display = 'block'; }
  else { textBlock.style.display = 'none'; }
}
