function expand_contract ( tVarTitle, tVarExpand, nSeq ) {
	var oCollapse, j=1, oArea=document.getElementById(tVarExpand+nSeq), oTitleBar=document.getElementById(tVarTitle+nSeq);
	if ( oArea.style.display == 'none' ) {
		oArea.style.display='';
		oTitleBar.style.backgroundColor='#003D7E';
	} else {
		oArea.style.display='none';
		oTitleBar.style.backgroundColor='#003D7E';
	}
	/*
	if ( oArea.style.display == 'none' ) {
		do {
			oCollapse=document.getElementById(tVarExpand+j);
			if ( oCollapse ) {
				if ( oCollapse != oArea ) {
					oCollapse.style.display='none';
					document.getElementById(tVarTitle+j).style.backgroundColor='#ffffff';
				}
				j ++;
			}
		} while ( oCollapse );
		oArea.style.display='';
		oTitleBar.style.backgroundColor='#FFFF00';
	}
	*/
}

function highlight_folder ( tVarTitle, tVarExpand, nSeq ) {
	var oTitleBar=document.getElementById(tVarTitle+nSeq);
	oTitleBar.style.cursor='pointer';
	oTitleBar.style.cursor='hand';
	//if ( document.getElementById(tVarExpand+nSeq).style.display == 'none' )
	oTitleBar.style.backgroundColor='#999999';
}

function unhighlight_folder ( tVarTitle, tVarExpand, nSeq ) {
	//if ( document.getElementById(tVarExpand+nSeq).style.display == 'none' )
		document.getElementById(tVarTitle+nSeq).style.backgroundColor='#003D7E';
}
// JavaScript Document
