/*
main.html

Author: Jonathan Thomas
Last Edit: June 3rd, 2009

Used In Files: index.html
*/

function setElementVisibility(elementToSet, showItSwitch, keepPlacementSwitch){
 if (showItSwitch) {
   elementToSet.style.display = "inline";
 }
 else{
   if (keepPlacementSwitch) {
     elementToSet.style.display = "none";
   }
   else{
     elementToSet.style.display = "none";
   }
 }
}

function showTable(dispTable, hideTable){
 setElementVisibility(document.getElementById(dispTable), true);
  setElementVisibility(document.getElementById(hideTable), false, true);
}