// JavaScript Document
function reload_form1(theForm) {
	theForm.submit();
}

function reload_form(theForm) {
	document.form.recharge.value = 1;
	theForm.submit()
}
function form_valid(theForm) {
	if (theForm.cv_cli.selectedIndex == 0) {
		alert("Veuillez indiquer votre civilité");
		return (false);
	}
	if (theForm.nom_cli.value == "") {
		alert("Veuillez entrer votre nom");
		theForm.nom_cli.focus();
		return (false);
	}
	if (theForm.pr_cli.value == "") {
		alert("Veuillez entrer votre prénom");
		theForm.pr_cli.focus();
		return (false);
	}
	if (theForm.ad1_cli.value == "") {
		alert("Veuillez entrer votre adresse");
		theForm.ad1_cli.focus();
		return (false);
	}
	if (theForm.ville_cli.value == "") {
		alert("Veuillez entrer votre ville");
		theForm.ville_cli.focus();
		return (false);
	}
	if (theForm.tel_cli.value == "") {
		alert("Veuillez entrer votre numéro de téléphone");
		theForm.tel_cli.focus();
		return (false);
	}
	if (theForm.cp_cli.value == "") {
		alert("Veuillez entrer votre code postal");
		theForm.cp_cli.focus();
		return (false);
	}
	if (theForm.pays_cli.selectedIndex == 0) {
		alert("Veuillez indiquer votre pays");
		return (false);
	}
	if (theForm.km.value == "") {
		alert("Veuillez entrer le kilometrage du véhicule");
		theForm.km.focus();
		return (false);
	}

	return (true);
}


