  // 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();
  }
  
  //Popup PopAmi
  function PopAmi(Dossier, url)
  {
    var haut=(screen.height-420)/2;
    var gauche=(screen.width-515)/2;
    popami=window.open(Dossier+'ami.php?Url='+url+'','popami','top='+haut+',left='+gauche+',toolbar=0, location=0, directories=0, status=0, scrollbars=1, resizable=0, copyhistory=0, menuBar=0, width=515, height=420');
    if (popami.blur) popami.focus();
  }
  
  //Popup PopAvis
  function PopAvis(Dossier, IdActualite)
  {
    var haut=(screen.height-420)/2;
    var gauche=(screen.width-515)/2;
    popavis=window.open(Dossier+'avis.php?IdActualite='+IdActualite+'','popavis','top='+haut+',left='+gauche+',toolbar=0, location=0, directories=0, status=0, scrollbars=1, resizable=0, copyhistory=0, menuBar=0, width=515, height=420');
    if (popavis.blur) popavis.focus();
  }
  
  function ManagePanierListing(Dossier, Action, Id, IdArticle, Quantite, Option, Location)
  { 
  	if(!IsInteger(document.getElementById(Quantite).value) || document.getElementById(Quantite).value==''  || document.getElementById(Quantite).value==0) alert('La quantité doit être un chiffre entre 1 et 99');
    else document.location.href=Dossier+"panier.php?Action="+Action+"&IdArticle="+IdArticle+"&Quantite="+document.getElementById(Quantite).value+"&IdOption="+document.getElementById(Option).value+"&Location="+Location;
  }
  
  // Verifie que la chaine est bien un entier
  function IsInteger(s) 
  {
	for (var i = 0; i < s.length; i++) 
	{
		var c = s.charAt(i);
		if (!((c >= "0") && (c <= "9")) || s==0) 
		{
			return false;
		}
	}
	return true;
  }