function noEntry(){
	message=document.ajout.message.value; 
	 if ((message.length<1)||(message.substring(0,6)=="******")){
		alert("Vous devez obligatoirement entrer votre message");
		document.ajout.message.value="****** A compléter !";
		document.ajout.message.focus();
		document.ajout.message.select();
		return false;
	}
	
	nom=document.ajout.nom.value; 
	 if ((nom.length<1)||(nom.substring(0,6)=="******")){
		alert("Vous devez obligatoirement entrer votre nom");
		document.ajout.nom.value="****** A compléter !";
		document.ajout.nom.focus();
		document.ajout.nom.select();
		return false;
	}

	prenom=document.ajout.prenom.value; 
	 if ((prenom.length<1)||(prenom.substring(0,6)=="******")){
		alert("Vous devez obligatoirement entrer votre prénom");
		document.ajout.prenom.value="****** A compléter !";
		document.ajout.prenom.focus();
		document.ajout.prenom.select();
		return false;
	}

	telephone=document.ajout.telephone.value; 
	 if ((telephone.length<10)||(telephone.substring(0,6)=="******")){
		alert("Vous devez obligatoirement entrer votre n° de téléphone");
		document.ajout.telephone.value="****** A compléter !";
		document.ajout.telephone.focus();
		document.ajout.telephone.select();
		return false;
	}

	email=document.ajout.email.value; 
	 if ((email.length<1)||(email.substring(0,6)=="******")){
		alert("Vous devez obligatoirement entrer votre e-mail");
		document.ajout.email.value="****** A compléter !";
		document.ajout.email.focus();
		document.ajout.email.select();
		return false;
	}

	tel=document.ajout.tel.value; 
	 if ((tel.length<1)||(tel.substring(0,6)=="******")){
		alert("Vous devez obligatoirement entrer votre numéro de téléphone");
		document.ajout.tel.value="****** à compléter !";
		document.ajout.tel.focus();
		document.ajout.tel.select();
		return false;
	}

	mail=document.ajout.mail.value; 
	 if ((mail.length<1)||(mail.substring(0,6)=="******")){
		alert("Vous devez obligatoirement entrer votre adresse e-mail");
		document.ajout.mail.value="****** Veuillez compléter ce compléter !";
		document.ajout.mail.focus();
		document.ajout.mail.select();
		return false;
	} else { return true; }
}
function PopupCentrer(url,nom,largeur,hauteur,options) {
  var haut=(screen.height-hauteur)/2;
  var Gauche=(screen.width-largeur)/2;
  fencent = window.open(url,nom,"top="+haut+",left="+Gauche+",width="+largeur+",height="+hauteur+","+options);
}