function Legende (num) {  
  NbMax=14;
var Comment;  
var ObjetAff = document.getElementById("Affiche");
  switch(num) {
  case 0:
    Comment="La Planche du Piquefattes";
    break;
  case 1:
    Comment="La Planche du Piquefattes";
    break;
  case 2:
    Comment="La guinguette du Granier";
    break;
  case 3:
    Comment="La guinguette du Granier";
    break;
  case 4:
    Comment="L'envers de la Maison Jaune";
    break;
  case 5:
    Comment="La Ganière en été";
    break;
  case 6:
    Comment="La Ganière en été";
    break;
  case 7:
    Comment="Le mas Pomel";
    break;
  case 8:
    Comment="Le mas Pomel";
    break;
  case 9:
    Comment="Le mas Pomel";
    break;
  case 10:
    Comment="Le mas Pomel";
    break;
  case 11:
    Comment="Le Garage";
    break;
  case 12:
    Comment="Le Ronc de Pigoulière";
    break;
  case 13:
    Comment="Le Ronc de Pigoulière";
    break;
  case 14:
    Comment="Le Ronc de Pigoulière";
    break;
 }
  ObjetAff.innerHTML=Comment; }
