// JavaScript Document

function toggleDisplay(id, show)
{
  if (show)
  {
    document.getElementById(id).style.display = "block"
  } else {
    document.getElementById(id).style.display = "none"
  }
}
