function validerFormSendFriendsMail(invalide) {
	var isValid = true;
	$("#sendFriendsMail .email").each(function(){
		if ($(this).val() != "") {
			if (!checkMail($(this).val())) {
				$(this).next().html(invalide);
				$(this).next().show();
				isValid = false;
			}
			else {
				$(this).next().hide();
			}
		}
	});
	return isValid;
}

function validerFormInscriptionConcoursPhoto(requis, messageReglement) {
	
	var hasErrors = false;
	
	if ($('#photo_name').val() == "") {
		$('#msgErrorPhoto').html(requis);
		hasErrors = true;
	}
	else {
		$('#msgErrorPhoto').html("");
	}
	
	if (!$('#civilite_mr').attr('checked') && !$('#civilite_mme').attr('checked') && !$('#civilite_mlle').attr('checked')) {
		$('#msgErrorCivilite').html(requis);
		hasErrors = true;
	}
	else {
		$('#msgErrorCivilite').html("");
	}
	
	if ($('#nom').val() == "") {
		$('#msgErrorNom').html(requis);
		hasErrors = true;
	}
	else {
		$('#msgErrorNom').html("");
	}
	
	if ($('#prenom').val() == "") {
		$('#msgErrorPrenom').html(requis);
		hasErrors = true;
	}
	else {
		$('#msgErrorPrenom').html("");
	}
	
	if ($('#adresse').val() == "") {
		$('#msgErrorAdresse').html(requis);
		hasErrors = true;
	}
	else {
		$('#msgErrorAdresse').html("");
	}
	
	if ($('#cp').val() == "") {
		$('#msgErrorCp').html(requis);
		hasErrors = true;
	}
	else {
		$('#msgErrorCp').html("");
	}
	
	if ($('#ville').val() == "") {
		$('#msgErrorVille').html(requis);
		hasErrors = true;
	}
	else {
		$('#msgErrorVille').html("");
	}
	
	if ($('#pays').val() == "") {
		$('#msgErrorPays').html(requis);
		hasErrors = true;
	}
	else {
		$('#msgErrorPays').html("");
	}
	
	if (!$('#age_18-24').attr('checked') && !$('#age_25-34').attr('checked') && !$('#age_35-44').attr('checked') && !$('#age_45-55').attr('checked')  && !$('#age_plus55').attr('checked')) {
		$('#msgErrorAge').html(requis);
		hasErrors = true;
	}
	else {
		$('#msgErrorAge').html("");
	}
	
	if ($('#nationalite').val() == "") {
		$('#msgErrorNationalite').html(requis);
		hasErrors = true;
	}
	else {
		$('#msgErrorNationalite').html("");
	}
	
	if ($('#profession').val() == "") {
		$('#msgErrorProfession').html(requis);
		hasErrors = true;
	}
	else {
		$('#msgErrorProfession').html("");
	}
	
	if ($('#tel').val() == "") {
		$('#msgErrorTel').html(requis);
		hasErrors = true;
	}
	else {
		$('#msgErrorTel').html("");
	}
	
	if ($('#gsm').val() == "") {
		$('#msgErrorGsm').html(requis);
		hasErrors = true;
	}
	else {
		$('#msgErrorGsm').html("");
	}
	
	if ($('#email').val() == "") {
		$('#msgErrorEmail').html(requis);
		hasErrors = true;
	}
	else {
		$('#msgErrorEmail').html("");
	}
	
	if (!$('#reglement').attr('checked')) {
		alert(messageReglement);
		hasErrors = true;
	}
	
	return !hasErrors;
}
