// function controls internal content visibility 
function showHideText(showTheText,textID) {
  var showText = document.getElementById(textID);
  showText.style.display = showTheText;
}
