function verif_saisie(){

	var valide=0;

	if(document.getElementById('mail_expediteur').value.length>6){
		document.getElementById('mail_expediteur').style.backgroundColor="#f5f9fd";
		valide++;
	}
	else{
		document.getElementById('mail_expediteur').style.backgroundColor="#ffdfdf";
	}
	
	if(document.getElementById('mail_destinataire').value.length>6){
		document.getElementById('mail_destinataire').style.backgroundColor="#f5f9fd";
		valide++;
	}
	else{
		document.getElementById('mail_destinataire').style.backgroundColor="#ffdfdf";
	}
	

	if(valide<2){
		alert("Veuillez saisir correctement tous les champs s'il vous plait");
		return false;
	}
	else{
		return true;
	}
}