function afficher(spanIn)
{
	if (spanIn == '')
	return;

	var spanToDisplay = document.getElementById(spanIn);

	spanIdentite.style.display="none";
	spanActionFormation.style.display="none";
	spanRemuneration.style.display="none";

	ospanIdentite.className="deactive";
	ospanActionFormation.className="deactive";
	ospanRemuneration.className="deactive";

	var spanAAfficher=document.getElementById('spanAffiche');
/*	alert(spanAAfficher);
	return;*/
	spanAAfficher.value=spanIn;


	spanToDisplay.style.display="";


	var ongletToDisplay=document.getElementById("o"+spanIn);
	ongletToDisplay.className="active";
}
