// JavaScript Functions for Chrestomathy

function toggleText(divName, anchorName)
{
  if (document.getElementById)
  {
    theDiv = document.getElementById(divName);
    anchorTag = document.getElementById(anchorName);
    linkText = anchorTag.innerHTML;

    if (theDiv.style.display == 'none')
    {
      theDiv.style.display = 'inline';
      anchorTag.innerHTML = linkText.replace(/^Show/, "Hide");
    }
    else
    {
      theDiv.style.display = 'none';
      anchorTag.innerHTML = linkText.replace(/^Hide/, "Show");
    }
  }
}

