function pourOnLoad()
{
	// FORM INSCRIPTION
	if (document.frmInscriptionISO)
	{
		if (document.frmInscriptionISO.prisecFaireChoix[2].checked == true)
		{
			// faire apparaître choix formulaire PRI ou SEC
			document.frmInscriptionISO.prisecGrille[0].checked = false;
			document.frmInscriptionISO.prisecGrille[1].checked = false;
			document.getElementById('choixNiveauFormulaire1').style.display = 'block';
			document.getElementById('choixNiveauFormulaire2').style.display = 'block';
		}
		if (document.frmInscriptionISO.prisecFaireChoix[2].checked == false)
		{
			// faire disparaître choix formulaire PRI ou SEC
			document.frmInscriptionISO.prisecGrille[0].checked = false;
			document.frmInscriptionISO.prisecGrille[1].checked = false;
			document.getElementById('choixNiveauFormulaire1').style.display = 'none';
			document.getElementById('choixNiveauFormulaire2').style.display = 'none';
		}
	}
	//////////////////
	
	
	// FORM PRIMAIRE BLOC 1
	if (document.frmBloc1Primaire)
	{
		gestionDynamiqueBloc1Primaire();
	}
	//////////////////
	
	// FORM PRIMAIRE BLOC 2
	if (document.frmBloc2Primaire)
	{
		gestionDynamiqueBloc2Primaire();
	}
	//////////////////
	
	
	// FORM PRIMAIRE BLOC 3
	if (document.frmBloc3Primaire)
	{
		gestionDynamiqueBloc3Primaire();
	}
	//////////////////
	
	
	// FORM PRIMAIRE BLOC 4
	if (document.frmBloc4Primaire)
	{
		gestionDynamiqueBloc4Primaire();
	}
	//////////////////
	
	
	// FORM SECONDAIRE BLOC 1
	if (document.frmBloc1Secondaire)
	{
		gestionDynamiqueBloc1Secondaire();
	}
	//////////////////
	
	
	// FORM SECONDAIRE BLOC 2
	if (document.frmBloc2Secondaire)
	{
		gestionDynamiqueBloc2Secondaire();
	}
	//////////////////
	
	
	// FORM SECONDAIRE BLOC 3
	if (document.frmBloc3Secondaire)
	{
		gestionDynamiqueBloc3Secondaire();
	}
	//////////////////
	
	
	// FORM SECONDAIRE BLOC 4
	if (document.frmBloc4Secondaire)
	{
		gestionDynamiqueBloc4Secondaire();
	}
	//////////////////
}
