function reloadCaptcha() {
	document.getElementById('captcha').src = document.getElementById('captcha').src + '#';
}

function validation() {
	
	var msg = "";
	document.ajout.nom.style.background='#FFFFFF';
	document.ajout.prenom.style.background='#FFFFFF';
	document.ajout.fonction.style.background='#FFFFFF';
	document.ajout.entite.style.background='#FFFFFF';
	document.ajout.fonction.style.background='#FFFFFF';
	document.ajout.rue.style.background='#FFFFFF';
	document.ajout.ville.style.background='#FFFFFF';
	document.ajout.cp.style.background='#FFFFFF';
	document.ajout.telephone.style.background='#FFFFFF';
	document.ajout.fax.style.background='#FFFFFF';
	document.ajout.email.style.background='#FFFFFF';
	document.ajout.captcha.style.background='#FFFFFF';
	
	if(document.ajout.nom.value.length==0){
		msg += "Le champ Nom est vide \n";
		document.ajout.nom.style.background='#ffa060';
	 }
	 if(document.ajout.prenom.value.length==0){
		msg += "Le champ Prenom est vide \n";
		document.ajout.prenom.style.background='#ffa060';
	 }
	 if(document.ajout.entite.value.length==0){
		msg += "Le champ Entité email est vide \n";
		document.ajout.entite.style.background='#ffa060';
	 }
	 if(document.ajout.rue.value.length==0){
		msg += "Le champ Adresse est vide \n";
		document.ajout.rue.style.background='#ffa060';
	 }
	 if(document.ajout.cp.value.length==0 ||
			 isNumber(document.ajout.cp.value)==false) {
		msg += "Le champ Code postal est vide ou mal renseigné \n";
		document.ajout.cp.style.background='#ffa060';
	 }
	 if(document.ajout.ville.value.length==0){
		msg += "Le champ Ville est vide \n";
		document.ajout.ville.style.background='#ffa060';
	 }
	 if(document.ajout.telephone.value.length==0){
		msg += "Le champ Téléphone est vide \n";
		document.ajout.telephone.style.background='#ffa060';
	 }
	 if(document.ajout.email.value.length==0){
		msg += "Le champ Email est vide \n";
		document.ajout.email.style.background='#ffa060';
	 }
	 if(document.ajout.captcha.value.length==0){
		msg += "Le champ de validation est vide \n";
		document.ajout.captcha.style.background='#ffa060';
	 }
  
	if(msg != 0){
		msg += "Les champs ci dessus n'ont pas ete correctement renseignés !";
		alert(msg);
		return false;
	}
  return true;
}


function isNumber(nbr) {
	
	if(isNaN(nbr)==true) {
        return false;
    }
    else if(nbr.length!=5) {
		alert("Il faut un ensemble de 5 chiffres pour le code postal");
	    return false
	}
	else
	return true;
}
