<!--
var DomYes=document.getElementById?1:0;

function expandit(curobj){
	if (DomYes) {
  		var catrow=document.getElementById("cat_"+curobj.id).style;
	} else {
		var catrow=document.all["cat_"+curobj.id].style;
	}

	if (catrow.display=="none")
		catrow.display="";
	else
  		catrow.display="none";
}

window.onload = function() {
	var CurrentSection = "";
	var CurrentSubSection = "";

	if (CurrentSection) {
		if (DomYes) {
	  		var catrow=document.getElementById("cat_"+CurrentSection).style;
		} else {
			var catrow=document.all["cat_"+CurrentSection].style;
		}
		catrow.display = "";
	}
	if (CurrentSubSection) {
		if (DomYes) {
	  		var subdiv=document.getElementById("sub_"+CurrentSubSection).style;
		} else {
			var subdiv=document.all["sub_"+CurrentSubSection].style;
		}
		subdiv.background = "#e7f0f8";
		subdiv.fontWeight = "bold";
	}
}
-->

