  // Popup Photo
  function PopPhoto(Dossier, chemin, largeur, hauteur){
    var haut=(screen.height-hauteur)/2;
    var gauche=(screen.width-largeur)/2;
    popphoto=window.open(Dossier+'pop_photo.php?chemin='+chemin+'&hauteur='+hauteur+'&largeur='+largeur+'','popphoto','top='+haut+',left='+gauche+',toolbar=0, location=0, directories=0, status=0, scrollbars=0, resizable=0, copyhistory=0, menuBar=0, width='+(largeur+20)+', height='+(hauteur+20));
    if (popphoto.blur) popphoto.focus();
  }
  
  //Popup Galerie
  function PopGalerie(Dossier, id_galerie, id_photo)
  {
    var haut=(screen.height-800)/2;
    var gauche=(screen.width-800)/2;
    popphoto=window.open(Dossier+'pop_galerie.php?id_galerie='+id_galerie+'&id_photo='+id_photo+'','popphoto','top='+haut+',left='+gauche+',toolbar=0, location=0, directories=0, status=0, scrollbars=0, resizable=0, copyhistory=0, menuBar=0, width=820, height=820');
    if (popphoto.blur) popphoto.focus();
  }
  
  //Popup Article Associé
  function PopArticleAssoc(id_article)
  {
    var haut=(screen.height-400)/2;
    var gauche=(screen.width-770)/2;
    poparticleassoc=window.open('pop_articleassoc.php?Id='+id_article,'poparticleassoc','top='+haut+',left='+gauche+',toolbar=0, location=0, directories=0, status=0, scrollbars=1, resizable=0, copyhistory=0, menuBar=0, width=810, height=400');
    if (poparticleassoc.blur) poparticleassoc.focus();
  }
  
  //Popup Document Associé
  function PopDocumentAssoc(id_article)
  {
    var haut=(screen.height-400)/2;
    var gauche=(screen.width-770)/2;
    popdocumentassoc=window.open('pop_documentassoc.php?Id='+id_article,'popdocumentassoc','top='+haut+',left='+gauche+',toolbar=0, location=0, directories=0, status=0, scrollbars=1, resizable=0, copyhistory=0, menuBar=0, width=810, height=400');
    if (popdocumentassoc.blur) popdocumentassoc.focus();
  }
  
  //Popup Facture
  function PopFacture(id_commande)
  {
    var haut=(screen.height-500)/2;
    var gauche=(screen.width-620)/2;
    popfacture=window.open('pop_facture.php?Id='+id_commande,'popfacture','top='+haut+',left='+gauche+',toolbar=0, location=0, directories=0, status=0, scrollbars=1, resizable=0, copyhistory=0, menuBar=0, width=640, height=400');
    if (popfacture.blur) popfacture.focus();
  }
  
  function PopPano(largeur, hauteur){
    var haut=(screen.height-hauteur)/2;
    var gauche=(screen.width-largeur)/2;
    poppano=window.open('pop_pano.php?hauteur='+hauteur+'&largeur='+largeur+'','poppano','top='+haut+',left='+gauche+',toolbar=0, location=0, directories=0, status=0, scrollbars=0, resizable=0, copyhistory=0, menuBar=0, width='+largeur+', height='+hauteur);
    if (poppano.blur) poppano.focus();
  }
  
  function ManagePanier(Dossier, Action, Id, IdArticle, Quantite, Location)
  { 
    if(Quantite != "") document.location.href=Dossier+"panier.php?Action="+Action+"&IdArticle="+IdArticle+"&Quantite="+Quantite+"&Location="+Location;
	else document.location.href=Dossier+"panier.php?Action="+Action+"&IdArticle="+IdArticle+"&Quantite="+document.getElementById('Quantite').value+"&IdOption="+document.getElementById('IdOption').value+"&Location="+Location;
  }
  
  function ManagePanierListing(Dossier, Action, Id, IdArticle, Quantite, Option, Location)
  { 
    document.location.href=Dossier+"panier.php?Action="+Action+"&IdArticle="+IdArticle+"&Quantite="+document.getElementById(Quantite).value+"&IdOption="+document.getElementById(Option).value+"&Location="+Location;
  }