function AffCarte(left,top,color) {
  if (color == 0) {chemin = "../images/Position_black.gif"}
  else if (color == 1) {chemin = "../images/Position_grey.gif"}
  contenu = "<img src='"+chemin+"' width='11' height='7'>";
  if (document.getElementById) {
    document.getElementById("Maxi").innerHTML = contenu;
    document.getElementById("Maxi").style.visibility = "visible";
    document.getElementById("Maxi").style.left = left + "px";
    document.getElementById("Maxi").style.top = top + "px";
  }
  else if (document.all) {
    Maxi.innerHTML = contenu;
    document.all["Maxi"].style.visibility = "visible";
    document.all["Maxi"].style.left = left + "px";
    document.all["Maxi"].style.top = top + "px";
  }
}

areaz1 = '<area shape="circle" coords="136,231,14" href="javascript:AffGroupe(\'../images/Groupe1.png\',1)" onMouseOut="HideCarte()" alt="Cliquez pour zoomer" title="Cliquez pour zoomer">'    
areaz2 = '<area shape="circle" coords="209,21,14" href="javascript:AffGroupe(\'../images/Groupe2.png\',2)" onMouseOut="HideCarte()" alt="Cliquez pour zoomer" title="Cliquez pour zoomer">'
areaz3 = '<area shape="circle" coords="113,373,18" href="javascript:AffGroupe(\'../images/Groupe3.png\',3)" onMouseOut="HideCarte()" alt="Cliquez pour zoomer" title="Cliquez pour zoomer">'
areaz4 = '<area shape="circle" coords="120,136,14" href="javascript:AffGroupe(\'../images/Groupe4.png\',4)" onMouseOut="HideCarte()" alt="Cliquez pour zoomer" title="Cliquez pour zoomer">'

function AffCarteGroupe(cheminz,mm) {
  switch (mm) {
    case 1 : zonez = areaz1; break;
    case 2 : zonez = areaz2; break;
    case 3 : zonez = areaz3; break;
    case 4 : zonez = areaz4;
  }
  contenu = "<img src='"+cheminz+"' width='341' height='595' border='0' usemap='#Group'><map name='Group'>"+zonez+"</map>"
  if (document.getElementById) {
    document.getElementById("Maxi").innerHTML = contenu;
    document.getElementById("Maxi").style.visibility = "visible";
    document.getElementById("Maxi").style.left = "0px";
    document.getElementById("Maxi").style.top = "0px";
  }
  else if (document.all) {
    Maxi.innerHTML = contenu;
    document.all["Maxi"].style.visibility = "visible";
    document.all["Maxi"].style.left = "0px";
    document.all["Maxi"].style.top = "0px";
  }
} 
  
function HideCarte() {
  if (document.getElementById) {
    document.getElementById("Maxi").style.visibility = "hidden";
  }
  else if (document.all) {
    document.all["Maxi"].style.visibility = "hidden";
  }
}

function AffZoom(chemin,dep) {
  if (!dep) dep = "FranceZ"
  contenu = "<img src='"+chemin+"' usemap='#"+dep+"' width='430' height='401' border='0'>"
  if (document.getElementById) {
    document.getElementById("Zoom").innerHTML = contenu;
    document.getElementById("Zoom").style.visibility = "visible";
  }
  else if (document.all) {
    Zoom.innerHTML = contenu;
    document.all["Zoom"].style.visibility = "visible";
  }
} 

function HideZoom() {
  if (document.getElementById) {
    document.getElementById("Zoom").style.visibility = "hidden";
  }
  else if (document.all) {
    document.all["Zoom"].style.visibility = "hidden";
  } 
  document.getElementById('Liste'+dep).style.display = 'none';
  dep = 0;
  AffichDep()
}
