//Vérification du formmulaire
function validForm(TheForm) {
    if (TheForm.Prenom.value.length < 1) {
        alert("Introduzca su nombre.");
	    TheForm.Prenom.focus();
        return false;
    }
    if (TheForm.Nom.value.length < 1) {
        alert("Introduzca su apellido.");
        TheForm.Nom.focus();
        return false;
    }
    if (TheForm.Ville.value.length < 1) {
        alert("Indique el nombre de su ciudad.");
        TheForm.Ville.focus();
        return false;
    }
    if (TheForm.Tel.value.length < 1) {
        alert("Indique su número de teléfono.");
        TheForm.Tel.focus();
        return false;
    }
}
