// JavaScript Document
function showHideTable(theTable)
{
if (document.getElementById(theTable).style.display == 'none')
  {
  document.getElementById(theTable).style.display = 'block';
  }
  else
  {
  document.getElementById(theTable).style.display = 'none';
  }
}

function MM_openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}