function champ() {
	if (document.form1.frm_nom.value.length == 0) {
		alert("Veuillez introduire votre nom, Merci");
		document.form1.frm_nom.focus();
		return false;
	}
	if (document.form1.frm_prenom.value.length == 0) {
		alert("Veuillez introduire votre Prénom, Merci");
		document.form1.frm_prenom.focus();
		return false;
	}
	if ((document.form1.frm_email.value.length == 0) || (document.form1.frm_email.value.indexOf('@',0)==-1) || (document.form1.frm_email.value.indexOf('.',0)==-1)) {
		alert("Veuillez introduire une adresse e-mail valide, Merci");
		document.form1.frm_email.focus();
		return false;
	}
	if (document.form1.frm_tel.value.length == 0) {
		alert("Veuillez introduire votre numéro de téléphone, Merci");
		document.form1.frm_tel.focus();
		return false;
	}
}