var Nb=1;

function AjoutChamps(LeParam){

   Nb++;
   LeFile=document.getElementById("Champ"+(Nb-1)).cloneNode(true);
   LeFile.name="Champ"+Nb;
   LeFile.id="Champ"+Nb;
   LeFile.Nb=Nb;
   LeRetourChariot=document.createElement("br");
   document.getElementById("LesChamps").appendChild(LeFile);
   document.getElementById("LesChamps").appendChild(LeRetourChariot);
   document.getElementById("Champ"+(Nb-1)).onchange="";
   if(Nb==10){
      document.getElementById("Champ"+(Nb)).onchange="";
   }
}

//Pour article photo et legende
function AjoutChamps2(LeParam){

   Nb++;
   LeFile=document.getElementById("Champ"+(Nb-1)).cloneNode(true);
   LeFile.name="Champ"+Nb;
   LeFile.id="Champ"+Nb;
   LeFile.Nb=Nb;
   LeRetourChariot=document.createElement("br");
   document.getElementById("LesChamps").appendChild(LeFile);
   document.getElementById("LesChamps").appendChild(LeRetourChariot);
   document.getElementById("Champ"+(Nb-1)).onchange="";

   legendefr=document.getElementById("legende_fr"+(Nb-1)).cloneNode(true);
   legendefr.name="legende_fr"+Nb;
   legendefr.id="legende_fr"+Nb;
   legendefr.Nb=Nb;
   LeRetourChariot=document.createElement("br");
   fr=document.getElementById("fr").cloneNode(true);
   document.getElementById("LesChamps").appendChild(fr);
   document.getElementById("LesChamps").appendChild(legendefr);
   document.getElementById("LesChamps").appendChild(LeRetourChariot);

   legendees=document.getElementById("legende_es"+(Nb-1)).cloneNode(true);
   legendees.name="legende_es"+Nb;
   legendees.id="legende_es"+Nb;
   legendees.Nb=Nb;
   LeRetourChariot=document.createElement("br");
   es=document.getElementById("es").cloneNode(true);
   document.getElementById("LesChamps").appendChild(es);
   document.getElementById("LesChamps").appendChild(legendees);
   document.getElementById("LesChamps").appendChild(LeRetourChariot);

  
   
  legendeit=document.getElementById("legende_it"+(Nb-1)).cloneNode(true);
   legendeit.name="legende_it"+Nb;
   legendeit.id="legende_it"+Nb;
   legendeit.Nb=Nb;
   LeRetourChariot=document.createElement("br");
   it=document.getElementById("it").cloneNode(true);
   document.getElementById("LesChamps").appendChild(it);
   document.getElementById("LesChamps").appendChild(legendeit);
   document.getElementById("LesChamps").appendChild(LeRetourChariot);
    
   legendeal=document.getElementById("legende_al"+(Nb-1)).cloneNode(true);
   legendeal.name="legende_al"+Nb;
   legendeal.id="legende_al"+Nb;
   legendeal.Nb=Nb;
   LeRetourChariot=document.createElement("br");
   al=document.getElementById("al").cloneNode(true);
   document.getElementById("LesChamps").appendChild(al);
   document.getElementById("LesChamps").appendChild(legendeal);
   document.getElementById("LesChamps").appendChild(LeRetourChariot);


   if(Nb==10){
      document.getElementById("Champ"+(Nb)).onchange="";
   }
}


// affiche une popup
function twPopupImage(img, titre, auteur) { 
  oFenetre = window.open('','Image','width=400,height=400,toolbar=no,scrollbars=yes,resizable=yes');
  oFenetre.document.write("<html><head><title>"+titre+"</title></head>"); 
  oFenetre.document.write("<script type=\"text/javascript\">function twAjustePopUp() {");
  oFenetre.document.write(" if (document.images[0].complete) { ");
  oFenetre.document.write("window.resizeTo(document.images[0].width+29,document.images[0].height+63);");
  oFenetre.document.write(" window.focus();} else { setTimeout('twAjustePopUp()',1000) } }</"+"script>");
  oFenetre.document.write("<body onload='twAjustePopUp()'"); 
  oFenetre.document.write(" leftMargin=0 topMargin=0 marginwidth=0 marginheight=0>");
  oFenetre.document.write("<table width='100%' border='0' cellspacing='0' cellpadding='0' height='100%'>"); 
  oFenetre.document.write("<tr><td valign='middle' align='center'>");
  oFenetre.document.write("<img src='"+img+"' border='0' alt='"+auteur+"' title='"+auteur+"'>");
  oFenetre.document.write("</td></tr></table></body></html>"); 
  oFenetre.document.close(); 
} 