diff --git a/Js/fonctions.js b/Js/fonctions.js
index 13172e4..a042232 100755
--- a/Js/fonctions.js
+++ b/Js/fonctions.js
@@ -1619,3 +1619,33 @@ function exporter_modele_assure()
}
});
}
+
+function selectionner_adherent(id,no)
+{
+ $("#idAdherent_C" ).val(id);
+ $("#numeroAdherent_C" ).val(no);
+}
+
+function afficher_adherent()
+{
+ if ($("#numeroAdherent_C" ).val()>"")
+ {
+ window.location.assign($("#racineWeb" ).val()+"Ficheadherent/"+$("#numeroAdherent_C" ).val()+"/");
+ }
+}
+
+function afficher_adherent_id()
+{
+ codeTypeContrat = $("#codeTypeContrat_C").val();
+ if (codeTypeContrat=="F")
+ {
+ afficher_adherent_familiale_id();
+ return;
+ }
+
+ idAdherent = $("#idAdherent_C" ).val();
+ if (idAdherent>"0")
+ {
+ window.location.assign($("#racineWeb" ).val()+"Ficheadherent/"+$("#idAdherent_C" ).val()+"/");
+ }
+}
\ No newline at end of file
diff --git a/Vue/gabarit.php b/Vue/gabarit.php
index 3e76d1e..61715de 100755
--- a/Vue/gabarit.php
+++ b/Vue/gabarit.php
@@ -595,7 +595,7 @@ $activeChildId = $menuData['child'];
-
+