
/*******************************************************************************************
*  AFFICHAGE DES ONGLETS												*
*******************************************************************************************/

function OngletOn(num_bloc,num_tot)
{
	// masquer préalablement tous les onglets
	for(var i = 1; i<num_tot; i++)
	{
		OngletOff(i);
	}
		
	//Afficher l'onglet choisi
	document.getElementById("ONGLET-"+num_bloc).style.visibility='visible';
	document.getElementById("ONGLET-"+num_bloc).style.display='block';
}

function OngletOff(num_bloc)
{
	document.getElementById("ONGLET-"+num_bloc).style.visibility='hidden';
	document.getElementById("ONGLET-"+num_bloc).style.display='none';
}

