var rowVisible = true;
var bla = new Array();

function toggleDisplay(tbl) {
   var tblRows = tbl.rows;
   for (i = 0; i < tblRows.length; i++) {
      if (tblRows[i].className == "headerRow") {
         tblRows[i].style.display = (rowVisible) ? "none" : "";
      }
   }
   rowVisible = !rowVisible;
}
function toggleDisplay2(tbl) {
   var tblRows = tbl.rows;
   for (i = 0; i < tblRows.length; i++) {
      if (tblRows[i].className == "headerRow" && document.getElementById('company_radio').checked) {
         	tblRows[i].style.display = "";
      } else if (tblRows[i].className == "headerRow" && document.getElementById('person_radio').checked) {
      	tblRows[i].style.display = "none";
      }
   }
   
}

function toggleTable(tbl) {
	if (bla[tbl] == undefined) {
	bla[tbl] = false;	
	
		
	}
		expandID=tbl+"_expand";
	     tblID = document.getElementById(tbl);
		 if (tblID.style.display == "") {
			tblID.style.display = "none"; 
			document.getElementById(expandID).innerHTML = "[+]";
		 } else {
			 tblID.style.display = "";
			 document.getElementById(expandID).innerHTML = "[-]";
			 
		 }

		 
bla[tbl] = !bla[tbl]

 
   

}
function toggleTable2(tbl) {
		expandID=tbl+"_expand";
	     tblID = document.getElementById(tbl);
		 if (tblID.style.display == "") {
			tblID.style.display = "none"; 
		 } else {
			 tblID.style.display = "";			 
		 }
}
function findID () {
divs = document.getElementsByTagName("table");
idArray = new Array();

	for (x=0; x<divs.length; x++) {
		if (divs[x].className=="classe") {
		idArray[x] = divs[x].id
		}
	}	
	
}