function showbox()
{
  theBox = document.getElementById('explanation');
  if(theBox.style.display == 'block')
    theBox.style.display = 'none';
  else
    theBox.style.display = 'block';
  return false;
}