/**********************************************************
      TEST DU FORMULAIRE D'ENVOI DE MAIL 
*********************************************************/

// Teste le contenu des champs du form avant submit
function checkForm(theNom,thePrenom) {
	if(theNom.value=="") {
		alert("Indiquez votre nom !"); theNom.focus(); return false;
	} else if(thePrenom.value=="") {
		alert("Indiquez votre prenom !"); thePrenom.focus(); return false;
	} 
	return true;
}



