function SectionEvenement(RubActif){
	var ParagrapheSectionPresentation = document.getElementById('ParagrapheSectionPresentation');
	var ParagrapheSectionConept = document.getElementById('ParagrapheSectionConept');
	var ParagrapheSectionEsprit = document.getElementById('ParagrapheSectionEsprit');
	var ParagrapheSectionOrganisation = document.getElementById('ParagrapheSectionOrganisation');
	var ParagrapheSectionParcours = document.getElementById('ParagrapheSectionParcours');
	if(RubActif=="ParagrapheSectionPresentation"){
		ParagrapheSectionPresentation.style.display = 'block';
		ParagrapheSectionConept.style.display = 'none';
		ParagrapheSectionEsprit.style.display = 'none';
		ParagrapheSectionOrganisation.style.display = 'none';
		ParagrapheSectionParcours.style.display = 'none';
	}
	else if(RubActif=="ParagrapheSectionConept"){
		ParagrapheSectionPresentation.style.display = 'none';
		ParagrapheSectionConept.style.display = 'block';
		ParagrapheSectionEsprit.style.display = 'none';
		ParagrapheSectionOrganisation.style.display = 'none';
		ParagrapheSectionParcours.style.display = 'none';
	}
	else if(RubActif=="ParagrapheSectionEsprit"){
		ParagrapheSectionPresentation.style.display = 'none';
		ParagrapheSectionConept.style.display = 'none';
		ParagrapheSectionEsprit.style.display = 'block';
		ParagrapheSectionOrganisation.style.display = 'none';
		ParagrapheSectionParcours.style.display = 'none';
	}
	else if(RubActif=="ParagrapheSectionOrganisation"){
		ParagrapheSectionPresentation.style.display = 'none';
		ParagrapheSectionConept.style.display = 'none';
		ParagrapheSectionEsprit.style.display = 'none';
		ParagrapheSectionOrganisation.style.display = 'block';
		ParagrapheSectionParcours.style.display = 'none';
	}
	else if(RubActif=="ParagrapheSectionParcours"){
		ParagrapheSectionPresentation.style.display = 'none';
		ParagrapheSectionConept.style.display = 'none';
		ParagrapheSectionEsprit.style.display = 'none';
		ParagrapheSectionOrganisation.style.display = 'none';
		ParagrapheSectionParcours.style.display = 'block';
	}
	else{
		ParagrapheSectionPresentation.style.display = 'block';
		ParagrapheSectionConept.style.display = 'none';
		ParagrapheSectionEsprit.style.display = 'none';
		ParagrapheSectionOrganisation.style.display = 'none';
		ParagrapheSectionParcours.style.display = 'none';
	}
}

function SectionParticipation(RubActif){
	var ParagrapheSectionPreparation = document.getElementById('ParagrapheSectionPreparation');
	var ParagrapheSectionDateAcces = document.getElementById('ParagrapheSectionDateAcces');
	var ParagrapheSectionEngagement = document.getElementById('ParagrapheSectionEngagement');
	if(RubActif=="ParagrapheSectionPreparation"){
		ParagrapheSectionPreparation.style.display = 'block';
		ParagrapheSectionDateAcces.style.display = 'none';
		ParagrapheSectionEngagement.style.display = 'none';
	}
	else if(RubActif=="ParagrapheSectionDateAcces"){
		ParagrapheSectionPreparation.style.display = 'none';
		ParagrapheSectionDateAcces.style.display = 'block';
		ParagrapheSectionEngagement.style.display = 'none';
	}
	else if(RubActif=="ParagrapheSectionEngagement"){
		ParagrapheSectionPreparation.style.display = 'none';
		ParagrapheSectionDateAcces.style.display = 'none';
		ParagrapheSectionEngagement.style.display = 'block';
	}
	else{
		ParagrapheSectionPreparation.style.display = 'block';
		ParagrapheSectionDateAcces.style.display = 'none';
		ParagrapheSectionEngagement.style.display = 'none';
	}
}