
// Shows the poem in the left column
function ShowPoem( id )
{
   var poem = document.getElementById ( id );
   poem.style.display = "block";

   var prevPoem = document.getElementById ( prevId );
   prevPoem.style.display = "none";

   prevId = id;
}
