// JavaScript Document

function viewBio(person) // Opens bio popup for a person
{
  window.open('/bio_popup.php?person='+person.replace(' ','%20'), 'popup_'+person.replace(' ','') + '_bio', 'scrollbars=yes, resizable=no, width=667, height=500');
}

function show(id)
{
  var answer = document.getElementById("show"+id);
  if (answer.style.display == "none") { answer.style.display = "block"; }
}
