<!---
var bV=parseInt(navigator.appVersion);
NS4=(document.layers) ? true : false;
IE4=((document.all)&&(bV>=4))?true:false;
ver4 = (NS4 || IE4) ? true : false;

function expand(el) {
	if (!ver4) return;
	if (IE4) {expandIE(el)}
}

function expandIE(el) { 
	whichEl = eval("C_" + el);
	whichIm = eval("I_" + el);
	if (whichEl.style.display == "none") {
		whichEl.style.display = "block";
		whichIm.src = "/images/folderminus.gif";		
	}
	else {
		whichEl.style.display = "none";
		whichIm.src = "/images/folderplus.gif";
	}
}

function initIt(){
	if (NS4) {return}
	else {
		tempColl = document.all.tags("DIV");
		for (i=0; i<tempColl.length; i++) {
			if (tempColl(i).className == "child") tempColl(i).style.display = "none";
		}
	}
}

//-->
