<!--
function choix()
{
var correct = 0;


if (window.document.formulaire.dep_vallier.checked == true  && window.document.formulaire.nom_vallier.checked == true) {
		window.location="nomdep_vallier.php"
		correct = correct + 1;
			}
else if (window.document.formulaire.dep_vallier.checked == true) {
		correct = correct + 1;
		window.location="dep_vallier.php";
	}
else if (window.document.formulaire.nom_vallier.checked == true) {
		correct = correct + 1;
		window.location="nom_vallier.php"
	}

if (window.document.formulaire.dep_ftp1.checked == true  && window.document.formulaire.nom_ftp1.checked == true) {
		window.location="nomdep_ftp1.php"
		correct = correct + 1;
			}
else if (window.document.formulaire.dep_ftp1.checked == true) {
		correct = correct + 1;
		window.location="dep1_ftp1.php";
	}
else if (window.document.formulaire.nom_ftp1.checked == true) {
		correct = correct + 1;
		window.location="nom_ftp1.php"
	}	
if (window.document.formulaire.question3.checked == false) {
		correct = correct + 1;
	}
//alert("Vous avez obtenu " + correct + " rˇponses correctes !");
}


// fin masquage commentaires -->
