function showText(id2show) {
  theParagraph = document.getElementById(id2show);
  theParagraph.style.display = "block" ;
  return;
  }
									  
function hideText(id2show) {
  theParagraph = document.getElementById(id2show);
  theParagraph.style.display = "none" ;
  return;
  }
