<!--
 var tableStatus = new Array();
 function setTableBlank(tableID) {
    var temp = document.getElementById(tableID);
    if (tableStatus[tableID]) {
      tableStatus[tableID] = false;
      temp.style.position = 'absolute';
      temp.style.visibility = 'hidden';
    } else {
      tableStatus[tableID] = true;
      temp.style.position = 'relative';
      temp.style.visibility = 'visible';
    }
   }
// -->
