function verif_form_endettement(form){
	/***** Revenus *****/
	
	// Salaires
	if(convert_string_number_form(form, "salaires") === false){
		alert("Veuillez saisir un nombre correct pour vos salaires ou retraites.");
		form.salaires.select();
		return (false);
	}
	
	// Alloc logement
	
	if(convert_string_number_form(form, "allocations_logement") === false){
		alert("Veuillez saisir un nombre correct pour vos allocations logement.");
		form.allocations_logement.select();
		return (false);
	}
	
	// Alloc familiales
	
	if(convert_string_number_form(form, "allocations_familiales") === false){
		alert("Veuillez saisir un nombre correct pour vos allocations familiales.");
		form.allocations_familiales.select();
		return (false);
	}
	
	// Fonciers
	
	if(convert_string_number_form(form, "revenus_fonciers") === false){
		alert("Veuillez saisir un nombre correct pour vos revenus fonciers.");
		form.revenus_fonciers.select();
		return (false);
	}

	// Autres
	
	if(convert_string_number_form(form, "autres_revenus") === false){
		alert("Veuillez saisir un nombre correct pour vos autres revenus.");
		form.autres_revenus.select();
		return (false);
	}

	
	/***** Charges *****/
	
	// Crédit immo
	
	if(convert_string_number_form(form, "mensualites_credit_immobilier") === false){
		alert("Veuillez saisir un nombre correct pour vos prêt(s) immobilier(s).");
		form.mensualites_credit_immobilier.select();
		return (false);
	}

	// Crédit conso
	
	if(convert_string_number_form(form, "mensualites_credit_consommation") === false){
		alert("Veuillez saisir un nombre correct pour vos prêt(s) de consommation.");
		form.mensualites_credit_consommation.select();
		return (false);
	}
	
	// Loyer
	
	if(convert_string_number_form(form, "loyers") === false){
		alert("Veuillez saisir un nombre correct pour vos loyers.");
		form.loyers.select();
		return (false);
	}
	
	// Pensions
	
	if(convert_string_number_form(form, "pensions_versees") === false){
		alert("Veuillez saisir un nombre correct pour vos pensions versées.");
		form.pensions_versees.select();
		return (false);
	}
	
	form.submit();

}
