function showHideTable(theTable)
{
if (document.getElementById(theTable).style.display == 'none')
  {
  document.getElementById(theTable).style.display = 'block';
  location.href='#'+ theTable;
  }
  else
  {
  document.getElementById(theTable).style.display = 'none';
  }
}
