function show_hide_answer(the_answer_number) {
  var the_answer = document.getElementById('answer__' + the_answer_number);
  if(the_answer.style.display == '') {
    the_answer.style.display = 'none';
  }
  else {
    the_answer.style.display = '';
  }
}

