<!--
// popup fenêtre
function popup(page) {
  var nom = "new";
  var left = ((screen.width - 840)/2) - 15;
  var top = (screen.height - 480)/2;
  var options = "directories=no,menubar=no,status=no,location=no,scrollbars=no,resizable=no,width=840,height=480,left="+left+",top="+top+",fullscreen=no";
  window.open(page,nom,options);
}

// popup simple
function cmpt(page,nom,largeur,hauteur,options) {
  var top = 4000;
  var left = 4000;
  var options="location=no,directories=no,status=no,scrollbars=no,resizable=no,menubar=no";
  window.open(page,nom,"top="+top+",left="+left+",width="+largeur+",height="+hauteur+","+options);
}

// fenêtres centrées
function popupcentree(page,nom,largeur,hauteur,options) {
  var top=((screen.height-hauteur)/2)-20;
  var left=((screen.width-largeur)/2)-20;
  var options="location=no,directories=no,status=no,scrollbars=no,resizable=no,menubar=no";
  window.open(page,nom,"top="+top+",left="+left+",width="+largeur+",height="+hauteur+","+options);
}
function popupcentree2(page,nom,largeur,hauteur,options) {
  var top=((screen.height-hauteur)/2)-20;
  var left=((screen.width-largeur)/2)-20;
  var options="location=yes,directories=yes,status=yes,scrollbars=yes,resizable=yes,menubar=yes";
  window.open(page,nom,"top="+top+",left="+left+",width="+largeur+",height="+hauteur+","+options);
}

// définition des fenêtres-cartes
function def1(carte) {
  urlInfo = "" + carte + ".php";
  open(urlInfo,'info1','location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=no,width=750,height=550,left=25,top=25');
}

// popup
function ouvrirFEN(num) {
  for (n = 0; n < 50; n++) {
    id_cible = "FEN" + n;
    element = document.getElementById(id_cible);
      if (n == num) {
        if (element.style.display == "none") {
          element.style.display = "";
        } else {
          element.style.display = "none";
        }
      } else {
        element.style.display = "none";
      }
    }
}
function fermerFEN(num) {
  element = document.getElementById("FEN" + num);
  element.style.display = "none";
}

function ouvrirPOP() {
    id_cible = "POP";
    Element = document.getElementById(id_cible);
    if (Element.style.display == "none") {
      Element.style.display = "";
    } else {
      Element.style.display = "none";
    }
}
function fermerPOP() {
  Element = document.getElementById("POP");
  Element.style.display = "none";
}

function ouvrirPOPbis() {
    id_cible = "POPbis";
    Element = document.getElementById(id_cible);
    if (Element.style.display == "none") {
      Element.style.display = "";
    } else {
      Element.style.display = "none";
    }
}
function fermerPOPbis() {
  Element = document.getElementById("POPbis");
  Element.style.display = "none";
}

// définition des fenêtres-séjours
function def2(ville) {
  urlInfo = "../tourisme/" + ville + ".php";
  open(urlInfo,'info2','toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=0,resizable=0,copyhistory=0,width=350,height=300,left=155,top=120');
}
//-->
