<!--
function emailok()
{
if (document.detail.email.value.indexOf ('@',0) == -1 
    || document.detail.email.value.indexOf ('.',0) == -1)
{
      alert("\nUne adresse e-mail contient obligatoirement " + 
            "les signes \"@\" et \".\".\n\n" +
            "Entrez correctement votre adresse.");
      document.detail.email.select();
      document.detail.email.focus();
      return false;
}
return true;
}


function minimum(champ,libelle)
{
if (champ.value.length < 2)
{
alert("Veuillez saisir votre "+libelle+".");
champ.focus();
return false;
}
return true;
}

function checkAll()
{
	if(minimum(document.detail.nom,'nom')
		&& emailok())
	{
		return true;
	}
	else
		return false;
}
//-->
