function classToggle(className, iconId) {
	var theTags  = document.getElementsByTagName('tr');
		for (var i=0; i<theTags.length; i++){
		if (theTags[i].className == className){
			if (theTags[i].style.display == "none"){
				theTags[i].style.display = "";
				document.getElementById(iconId).src = "/allsiteincludes/images/icon_collapse.gif";
			} else {
				theTags[i].style.display = "none";
				document.getElementById(iconId).src = "/allsiteincludes/images/icon_expand.gif";
			}
		}
	}
}

function idToggle( targetId, iconId ){
	if (document.getElementById){
		target = document.getElementById( targetId );
			if (target.style.display == "none"){
				target.style.display = "";
				document.getElementById(iconId).src = "/allsiteincludes/images/icon_collapse.gif";
		} else {
				target.style.display = "none";
				document.getElementById(iconId).src = "/allsiteincludes/images/icon_expand.gif";
			}
		}
	}