<!--
function valid_inscr() {
	var verif;
	verif=true;
	if (document.form_affil.adresse1.value=="") verif=false;
	if (document.form_affil.usr.value=="") verif=false;
	if (document.form_affil.passwd.value=="") verif=false;
	if (document.form_affil.cp.value=="") verif=false;
	if (document.form_affil.ville.value=="") verif=false;
	if (!(document.form_affil.genre[0].checked)&&!(document.form_affil.genre[1].checked)&&!(document.form_affil.genre[2].checked)) {
		verif=false;
	}
	if ((document.form_affil.genre[0].checked)||(document.form_affil.genre[1].checked)) {
		if (document.form_affil.raison.value=="") verif=false;
		if (document.form_affil.immatriculation.value=="") verif=false;
	}
	if (document.form_affil.adresse_site.value.length<8) verif = false;
	
	if (document.form_affil.email.value.indexOf("@") != "-1" && document.form_affil.email.value.indexOf(".") != "-1" && document.form_affil.email.value != "") {
		if (verif==true) {
			if (document.form_affil.CGA.checked) {
				if (document.form_affil.passwd.value!=document.form_affil.passwd2.value) {
					window.alert("Vous n'avez pas confirmé correctement votre mot de passe");
				}
				else {document.form_affil.submit();}
			}
			else {window.alert("Vous devez accepter les conditions générales d'affiliation avant de valider !");}
		}
		else {window.alert("Tous les champs (sauf adresse 2) doivent être renseigné pour valider !");}
	}
	else {window.alert("Vous devez donner une adresse email valide!");}
}
	
function verif_montant(montant) {
	if (eval(montant) < 2000) {
		window.alert("Vous devez avoir au moins 20 € TTC de commission pour demander un paiement");
	} else {
		affil_action("paiement");
	}
}

function affil_action(action) {
	document.form_cache.toDo.value = action;
	document.form_cache.submit();
}
	
