	//Fonction testant les champs : Nom, Telephone, mail, Categorie,Type,Budget
	function verif_saisie() {

		var valide=0;
		var message = '';

		
		if (document.getElementById('cat1').checked || document.getElementById('cat2').checked) {
			document.getElementById('cat').style.backgroundColor="#f5f9fd";		
			valide++;
		}else{
			document.getElementById('cat').style.backgroundColor="#ffdfdf";		
		}

		//Test du champ nom
		if(document.getElementById('nom').value.length>1){
			document.getElementById('nom').style.backgroundColor="#f5f9fd";
			valide++;
		}
		else{
			document.getElementById('nom').style.backgroundColor="#ffdfdf";
		}
        
		//Test du champ email
		if(document.getElementById('email').value.length>=2){
			document.getElementById('email').style.backgroundColor="#f5f9fd";
			valide++;
		}
		else{
			document.getElementById('email').style.backgroundColor="#ffdfdf";
		}

		//Test du champ type select
		if(document.getElementById('type').selectedIndex != -1){
			document.getElementById('type').style.backgroundColor="#f5f9fd";
			valide++;
		}
		else{
			document.getElementById('type').style.backgroundColor="#ffdfdf";
		}
		
		//Test du champ budget_min
		if(document.getElementById('budget_min').value.length>=1){
			document.getElementById('budget_min').style.backgroundColor="#f5f9fd";
			valide++;
		}
		else{
			document.getElementById('budget_min').style.backgroundColor="#ffdfdf";
			message += '\n*Votre budget minimum doit contenir au moins 1 chiffre';			
		}	

		//Test du champ budget_max
		if(document.getElementById('budget_max').value.length>=1){
			document.getElementById('budget_max').style.backgroundColor="#f5f9fd";
			valide++;
		}
		else{
			document.getElementById('budget_max').style.backgroundColor="#ffdfdf";
			message += '\n*Votre budget maximum doit contenir au moins 1 chiffre';				
		}
		
		//Test du champ telephone
		if(document.getElementById('telephone').value.length>=10){
			document.getElementById('telephone').style.backgroundColor="#f5f9fd";
			valide++;
		}
		else{
			document.getElementById('telephone').style.backgroundColor="#ffdfdf";
			message += '\n*Votre numero de telephone doit contenir au moins 10 chiffres';
		}		

		if(valide<7){
			alert("Veuillez saisir correctement la totalit\351 des champs annot\351s d'une asterisque rouge."+message);
			return false;
		}
		else{
			document.forms['form_alerte'].submit();
			return true;
		}

	}
