// JavaScript Document
<!--
			function			verifFormCommune(form)
			{
				var				aucun = true;
					
				if (form.commune.value != null && form.commune.value.length > 0)	// pas bon
					aucun = false;
				if (form.code_postal.value != null && form.code_postal.value.length > 0)	// pas bon
					aucun = false;
				if (form.paroisse.value != null && form.paroisse.value.length > 0)	//pas bon
					aucun = false;
				if (form.lieu_de_culte.value != null && form.lieu_de_culte.value.length > 0)	// pas bon
					aucun = false;
				if (form.diocese.value != null && form.diocese.value.lastIndexOf("choisir") < 0)	//BON
					aucun = false;	
				if (aucun == true)
				{
					alerte("Veuillez renseigner au moins une des lignes hors options");
					return (false);
				}
				return (true);
			}
			
			/* Permet d'afficher des caractère spEciaux en alert */
			function alerte( txt_)
			{
				var O_Div = document.getElementById( 'D_ALERT');

				if( !O_Div)
				{
					O_Div = document.createElement('DIV');
					O_Div.id = 'D_ALERT';
					O_Div.style.display = 'none';
					document.body.appendChild( O_Div);
				}
				O_Div.innerHTML = txt_;
				alert( O_Div.innerHTML);
				return( false);
			}
-->
