<!--

function controle()
{
	if (! document.sentinelle.mail.value.isEmail() )
	{
		alert("Veuillez saisir votre adresse e-mail");
		document.sentinelle.mail.focus();
		return false;
	}
	if (! document.sentinelle.nom.value.isNotEmpty() )
	{
		alert("Veuillez saisir votre nom");
		document.sentinelle.nom.focus();
		return false;
	}
	
	if (! document.sentinelle.prenom.value.isNotEmpty() )
	{
		alert("Veuillez saisir votre prénom");
		document.sentinelle.prenom.focus();
		return false;
	}		
	if(! document.sentinelle.autorisation.checked)
	{
		alert("Veuillez autoriser la transmission d'information");
		document.sentinelle.autorisation.focus();
		return false;
	}
	
	if ( document.sentinelle.budget.value.isNotEmpty() && ! document.sentinelle.budget.value.isNumertic() )
	{
			alert("Veuillez saisir un nombre");
			document.sentinelle.budget.focus();
			return false;
	}

}

// document.onload = init();

-->
