﻿// javascript file



var isOn = 0;

function showHideRow(showrowID,myDivId)

{

      for (var i = 1; i < showHideRow.arguments.length; i++)
       {
         myDivId = showHideRow.arguments[i];
         try { document.getElementById(myDivId).style.visibility = "hidden"; }
         catch(e)
          {
            try { document.getElementById(myDivId).style.visibility = "hide"; }
            catch(e) { alert('Sorry! Your browser does not support expanding/collapsing feature categories.'); }
          }
         document.getElementById(myDivId).style.display = "none";
        }
         
     try { document.getElementById(showrowID).style.visibility = "visible"; }
     catch(e)
      {
        try { document.getElementById(showrowID).style.visibility = "show"; }
        catch(e) { alert('Sorry! Your browser does not support expanding/collapsing feature categories.'); }
      }
     try { document.getElementById(showrowID).style.display = "table-row"; }
     catch(e)
      {
        try { document.getElementById(showrowID).style.display = "block"; }
        catch(e) { alert('Sorry! Your browser does not support expanding/collapsing feature categories.'); }
      }
      

}



