
function AfficheEtat()
{
   RAZ_tout();
   Etat();
}

function Etat()
{
  var temp;
  var ind01;

  temp = "<table border='0' width='600' class='Corps'><tr><td colspan='8' class='Titre2' height='40'>&nbsp;Liste des états membres :</td></tr>";

  temp += "<tr class='Titre3' height='40'>";
  temp += "<td width='100'><b>&nbsp;Drapeau</b></td>";
  temp += "<td width='150'><b>&nbsp;Pays</b></td>";
  temp += "<td width='150'><b>&nbsp;Responsable</b></td>";
  temp += "<td width='200'><CENTER><b>&nbsp;Email éco</b></CENTER></td>";
  temp += "</tr>";

  for (ind01 = 0; ind01 < ETAT_MEMBRE_IDPAYS.length; ind01++)
  {
      temp += "<tr>";
      temp += "<td><a href='" + ETAT_MEMBRE_ADRSITE[ind01] + "'><img src='" + ETAT_MEMBRE_DRAPEAU[ind01] + "' width=100 height=80 alt=''></a>";
      temp += "<br><a href='" + ETAT_MEMBRE_ADRSITE[ind01] + "'>Site</a>&nbsp;&nbsp;-&nbsp;&nbsp;<a href='" + ETAT_MEMBRE_ADRFORUM[ind01] + "'>Forum/ML</a></td>";
      temp += "<td><b><a href='#' onclick='DetailPays(" + ind01 + ");'>" + ETAT_MEMBRE_NOMPAYS[ind01] + "</a></b></td>";
      temp += "<td>" + ETAT_MEMBRE_NOMUSER[ind01] + "</td>";
      temp += "<td>" + ETAT_MEMBRE_EMAILECO[ind01] + "</td>";
      temp += "</tr>";
  }

  temp += "</table>";
  document.getElementById("tabcentreb").innerHTML = temp;
}


function DetailPays(i)
{

}


function RAZ_tout()
{
  document.getElementById("tabgauchec").innerHTML = "";
  document.getElementById("tabcentrec").innerHTML = "";
  document.getElementById("tabdroitec").innerHTML = "";
  document.getElementById("tabcentreb").innerHTML = "";
}
function RAZ_centrec()
{
  document.getElementById("tabcentrec").innerHTML = "";
}


