// JavaScript Document
function ValidateFormClub(form)
	{
	MM_validateForm('nom','','R','prenom','','R','adresse','','R','ville','','R','codepostal','','RisNum','email','','RisEmail','photo','','R');
	retour=document.MM_returnValue;
	if (retour==true){
		// CONTROLE SUR LES CONDITIONS DE VENTES
		if (form.conditions.checked==false){
			retour=false;
			alert('Vous devez avoir pris connaissance des conditions d\'adhésion');
		}else retour=true;
	}else{retour=false;}
return retour;
}
