function verifAvis()
{
	var nom = document.form.nomAvis.value;
	var txt = document.form.texteAvis.value
	

	if (nom != "" && txt != "")
	{
		return true;
	}
	else
	{
		if (nom == "" && txt != "") alert("Vous n'avez pas saisi votre nom.")
		if (nom != "" && txt == "") alert("Vous n'avez pas saisi votre message.")
		if (nom == "" && txt == "") alert("Vous n'avez saisi aucuns champs.")
		return false;
	}
}