var FF, NbreH=5;
var tabInfo=new Array();
tabInfo[2]="<a href='#a1' onclick='Ferme();'>La Gagneraie</a> - ligne A<br><a href='#a2'>M. Longatte</a> - ligne A<br><a href='#a2'>Le Mas du Pommier</a> - ligne B";
tabInfo[3]="<a href='#a3'>La Villa du Bouc</a> - ligne C<br><a href='#a3'>Le Casquillé</a> - ligne C<br><a href='#a6'>M. Antoine</a> - ligne F<br><a href='#a6'>M. Bajard</a> - ligne F<br><a href='#a7'>M. Batby</a> - ligne G<br><a href='#a7'>M. Benoit</a> - ligne G<br><a href='#a8'>M. Caurla</a> - ligne H<br><a href='#a8'>M. Savigot</a> - ligne H<br><a href='#a9'>Mme Sistach</a> - ligne I";
tabInfo[4]="<a href='#a4'>Centre Chrétien</a> - ligne D<br><a href='#a4'>Château de Gagnières</a> - ligne D";
tabInfo[5]="<a href='#a5'>Maisons : Clairval</a> - ligne E<br><a href='#a5'>La Source de Vie</a> - ligne E";
 
function Init() {
  Ferme();
  if(document.all) { FF=0; }
  else { FF=1; } }

function Ferme() {
  document.getElementById("Mobile").style.visibility="hidden";
  document.getElementById("affAvert").style.visibility="hidden"; }

function Ouvre(num) {
  document.getElementById("affAvert").style.visibility="visible";
  if (num>0) {
  var objAffiche=document.getElementById("Mobile");
  objAffiche.innerHTML =tabInfo[num];
  objAffiche.style.left=((num-1)*160 + 2 + num*5*FF) + "px";
  objAffiche.style.visibility="visible"; } }
   
  
