//Edité le 27 janvier 2007
function Sondage_CEFAB_onchange()
{
	if(document.forms.FormName.Sondage_CEFAB.options[document.forms.FormName.Sondage_CEFAB.selectedIndex].value=="aucun")
		{	
		  document.getElementById("Sondage_CEFAB_Precision_Ligne").style.visibility='hidden';
		  document.forms.FormName.Sondage_CEFAB_Precision_Select.style.visibility='hidden';
		  document.forms.FormName.Sondage_CEFAB_Precision_Text.style.visibility='hidden';
		}
	if(document.forms.FormName.Sondage_CEFAB.options[document.forms.FormName.Sondage_CEFAB.selectedIndex].value=="internet")
		{	
		  document.getElementById("Sondage_CEFAB_Precision_Ligne").style.visibility='visible';
		  document.forms.FormName.Sondage_CEFAB_Precision_Select.style.visibility='visible';
		  document.forms.FormName.Sondage_CEFAB_Precision_Text.style.visibility='hidden';
		  document.forms.FormName.Sondage_CEFAB_Precision_Select.options.length=0;
		  document.forms.FormName.Sondage_CEFAB_Precision_Select.options[document.forms.FormName.Sondage_CEFAB_Precision_Select.options.length]=new Option(("Moteur de recherche"));	
		  document.forms.FormName.Sondage_CEFAB_Precision_Select.options[document.forms.FormName.Sondage_CEFAB_Precision_Select.options.length]=new Option(("Site internet du Cnam"));
		  document.forms.FormName.Sondage_CEFAB_Precision_Select.options[document.forms.FormName.Sondage_CEFAB_Precision_Select.options.length]=new Option(("Annuaire sur internet"));
		  document.forms.FormName.Sondage_CEFAB_Precision_Select.options[document.forms.FormName.Sondage_CEFAB_Precision_Select.options.length]=new Option(("Autre"));
		}
	if(document.forms.FormName.Sondage_CEFAB.options[document.forms.FormName.Sondage_CEFAB.selectedIndex].value=="presse")
		{	
		  document.getElementById("Sondage_CEFAB_Precision_Ligne").style.visibility='visible';
		  document.forms.FormName.Sondage_CEFAB_Precision_Select.style.visibility='hidden';
		  document.forms.FormName.Sondage_CEFAB_Precision_Text.style.visibility='visible';
		}
	if(document.forms.FormName.Sondage_CEFAB.options[document.forms.FormName.Sondage_CEFAB.selectedIndex].value=="relation")
		{	
		  document.getElementById("Sondage_CEFAB_Precision_Ligne").style.visibility='visible';
		  document.forms.FormName.Sondage_CEFAB_Precision_Select.style.visibility='visible';
		  document.forms.FormName.Sondage_CEFAB_Precision_Text.style.visibility='hidden';
		  document.forms.FormName.Sondage_CEFAB_Precision_Select.options.length=0;
		  document.forms.FormName.Sondage_CEFAB_Precision_Select.options[document.forms.FormName.Sondage_CEFAB_Precision_Select.options.length]=new Option(("Relation personnelle"));	
		  document.forms.FormName.Sondage_CEFAB_Precision_Select.options[document.forms.FormName.Sondage_CEFAB_Precision_Select.options.length]=new Option(("Relation professionnelle"));
		}
	if(document.forms.FormName.Sondage_CEFAB.options[document.forms.FormName.Sondage_CEFAB.selectedIndex].value=="autre")
		{	
		  document.getElementById("Sondage_CEFAB_Precision_Ligne").style.visibility='visible';
		  document.forms.FormName.Sondage_CEFAB_Precision_Select.style.visibility='hidden';
		  document.forms.FormName.Sondage_CEFAB_Precision_Text.style.visibility='visible';
		}
	
}


