function toggle(osTag,id,thisEvent) {
	var tag = document.getElementById(id);
	if (tag.className == "shuttree") {
		osTag.className="open";
		tag.className = "tree";
	} else {
		osTag.className="shut";
		tag.className = "shuttree";
	}
	thisEvent.cancelBubble = true;
}
