/// focus.js ///


SectionClick = function(pageid)
{
  trId = "section" + pageid;
  var tableRow = document.getElementById(trId);
  var browser=navigator.appName;
  if (tableRow.style.display == "inline" || tableRow.style.display == "table-cell")
  {
    tableRow.style.display = "none";
  } 
  else if (browser=="Microsoft Internet Explorer")
  {
    tableRow.style.display = "inline";
  }
  else 
  {
    tableRow.style.display = "table-cell";
  }
}

