// Unclassified NewsBoard ForumSelectPlugin
// Unclassified NewsBoard: http://newsboard.unclassified.de
// Copyright 2006 by Moritz 'Morty' Strübe <morty@gmx.net>
// This code is under the GPL v2
// 2006-02-18: Initial version



function ForumListCheck(){
	var table = document.getElementById("ForumListTable");
	var tr = table.firstChild;
	var lhid = "";
	var l_id;
	var cb;
	do{
		
		tr.style.display =	"table-row";
		if(lhid != ""){
			l_id = tr.getAttribute("id");
			if(-1 != l_id.search(lhid) ){
				tr.style.display = "none";
			} else {
				lhid = "";
			}
			
		}
		
		if(lhid == ""){
			cb = document.getElementById("h" + tr.getAttribute("id"))
			if(cb){	
				if(cb.checked){
					lhid = tr.getAttribute("id"); //Alles unterhalb verstecken
				}
			}
		}
		
	} while( (tr = tr.nextSibling));
	
}