

function ToggleBFExpandoSection(id)
{
	var heading = document.getElementById('ExpandableSection-heading-'+id);
	var content = document.getElementById('ExpandableSection-content-'+id);
	if(content.style.display == 'none')
		content.style.display = '';
	else
		content.style.display = 'none';
	this.parent.focus();
}