<!-- 
/***********************************************
* Multi-Part Content script-  Dynamic Drive (www.dynamicdrive.com)
* This notice must stay intact for use
* Visit http://www.dynamicdrive.com/ for full source code
***********************************************/
var rows=0

function getElementbyClass(classname){
	colscollect=new Array()
	
	var inc=0
	var alltags=document.all? document.all : document.getElementsByTagName("*")
	for (i=0; i<alltags.length; i++){
		if (alltags[i].className==classname)
			colscollect[inc++]=alltags[i]
		if (alltags[i].className=="count_rows")
			rows++
	}
}

function sel_user(sel_usr){
	for (i=0; i<colscollect.length; i++){
		colscollect[i].style.display="none"
	}
	if(sel_usr.value>0) {
		document.getElementById("L_"+sel_usr.value).style.display="table-cell"
		document.getElementById("B_"+sel_usr.value).style.display="table-cell"
		for(x=1;x<=rows;x++){
			document.getElementById("S_"+x+"_"+sel_usr.value).style.display="table-cell"
			document.getElementById("BC_"+x+"_"+sel_usr.value).style.display="table-cell"
		}
	}
	//document.getElementById("backbutton").style.visibility=(curpart==0)? "hidden" : "visible"
	//document.getElementById("backbutton").style.visibility=(curpart==0)? "hidden" : "visible"
}

function onloadfunct(){
//	alert("start")
	getElementbyClass("hid_col")
}

if (window.addEventListener)
window.addEventListener("load", onloadfunct, false)
else if (window.attachEvent)
window.attachEvent("onload", onloadfunct)
else if (document.getElementById)
window.onload=onloadfunct


//-->


