var toggleSection = function(obj) {
	theState = $(obj+"div").className;
	theHeight = document.all ? $(obj+"div").offsetHeight : $(obj+"div").clientHeight;
	if (theState == "expanded") {
		sectionT = new Tween($(obj+"wrapperdiv").style,'height',Tween.strongEaseOut,theHeight,1,.5,'px');
		$(obj+"div").className = "";
		if ($(obj+"ToggleIcon")) {$(obj+"ToggleIcon").innerHTML = "+";}
		if ($(obj+"Text")) {$(obj+"Text").innerHTML = "<img src=\"http://images.agoramedia.com/fivefactor/images/my.progress.open.gif\" width=\"10\" height=\"10\" alt=\"\" border=\"0\" align=\"absmiddle\" hspace=\"4\">";}
	} else {
		sectionT = new Tween($(obj+"wrapperdiv").style,'height',Tween.strongEaseOut,1,theHeight,.5,'px');
		$(obj+"div").className = "expanded";
		if ($(obj+"ToggleIcon")) {$(obj+"ToggleIcon").innerHTML = "-";}
		if ($(obj+"Text")) {$(obj+"Text").innerHTML = "<img src=\"http://images.agoramedia.com/fivefactor/images/my.progress.close.gif\" width=\"10\" height=\"10\" alt=\"\" border=\"0\" align=\"absmiddle\" hspace=\"4\">";}
	}
	sectionT.start();
}