	/*function process_keypress() { 
		if (window.event.type == "keypress" & window.event.keyCode == 13) 
			alert("La touche ENTREE est inopérante."); 
			return !(window.event.type == "keypress" & window.event.keyCode == 13); 
		} 
		document.onkeypress = process_keypress; 
	*/	
	function teste_chiffre(v)

	{

		chaine_test=v;

		l=v.length;

		nb=0;


		for (j=0;j<=l;j++)
		{

			for (n=0;n<=9;n++)
			{
				if (chaine_test.charAt(j)==n.toString())
				{
					nb=nb+1;
				}
			}
		}

		return nb;
	}

	function cdag()
	{
		if ((teste_chiffre(window.document.FormName.f_cdag.value)==2) || (teste_chiffre(window.document.FormName.f_cdag.value)==3))
		{
			window.document.FormName.cdag.value="1";
			window.document.FormName.submit();
		}
		else
		{
			alert("Veuillez saisir un numéro de département en 2 ou 3 chiffres !");
		}
	}

	function association()
	{
		if (teste_chiffre(window.document.FormName.f_association.value)==2)
		{
			window.document.FormName.association.value="1";
			window.document.FormName.submit();
		}
		else
		{
			alert("Veuillez saisir un numéro de département en 2 chiffre !");
		}
	}
