function onToggleSection(link, sectionId)
{
	$(".document").hide();
	$("#pedigreeOuter").hide();
	
	section = document.getElementById(sectionId);
	
	if(sectionId == 'pedigreeOuter')
		document.getElementById('pedigree').style.display = '';
	
	if(!section)
		return false;
	
	section.style.display = '';
	
	return true;
}

