// 8.0 #75 - Document Manager: 4.3.4, Auto Expand/Contract Folders - changed by JacobS on Apr 23, 2008

// Shows/hides the child categories of the category passed to it.
function toggle_expand(int_category, str_imgPath) {

	var children = document.getElementById("children_"+int_category);
	var plusminus = document.getElementById("expand_"+int_category);

	if (children.style.display == "none") {
		plusminus.innerHTML = "<img src=\"" + str_imgPath + "Minus.gif\" />";
		children.style.display = "inline";
	} else {
		plusminus.innerHTML = "<img src=\"" + str_imgPath + "Plus.gif\" />";
		children.style.display = "none";

	}
}

