// JavaScript Document<!--function fenetre(url)  {  window.open(url, "fenetre", "screenx=0,screeny=0,width=600,height=500,menubar=no,status=no,resizable=no,scrollbars=1");  }function uniqueChoice(obj) {	if(obj.type == "checkbox") {		var oldCheck = obj.checked;		for( i=0; i<form.elements.length; i++) {			with(form.elements[i]) {				if((type == "checkbox") & (name == obj.name)) {					if(checked == true) { checked = false;}				}			}		}		obj.checked = oldCheck;	}}function verifMail(txt) {	if (txt == "") {return true;}	if (txt.indexOf ('@',0) == -1 || txt.indexOf ('.',0) == -1) {		return (confirm("L'adresse e-mail que vous avez saisie n'apparaît pas correcte. Voulez-vous soumettre le questionnaire quand même ?"));	} else {		return true;	}}//-->