

function ToggleList(oSelf, oChild)
// Note: when calling this function with the "close" ahref in the expanded bcl list,
// reverse the parent/child parameters, so that oSelf is equal to oChild when 
// originally toggled open
{
	var s = document.getElementById(oSelf);
	var c = document.getElementById(oChild);
	var cdiv = (c.style.display == 'block') ? 'none' : 'block';
	var sClass =(s.className =='bclParent')?'bclParentFocus':'bclParent';
	c.style.display = cdiv;
	s.className = sClass;
}




