// JavaScript toggle display(show/hide) of a block of text
function toggleDetails(whichID)
{
    var x = document.getElementById(whichID).style;
    //document.write(x.display);
  
      if (x.display == "")
      { 
        x.display = "block"; 
      }else{
      
        x.display = "";
      }
  
}

