/* Script d'affichage aléatoire des annoceurs */
var msg=new InitMsg();

function disp(txt) {
  document.getElementById("encart_part").innerHTML=txt;
  window.setTimeout("AffPart()",5000);
}

function affiche_part(sdestination, slogo, snom) {
  this.destination = sdestination;
  this.logo = slogo;
  this.nom = snom;
}

function InitMsg() {
  this.Aff=AffPart();
}

function AffPart() {
  part = new Array(4);
  part[0] = new affiche_part("/partenariats/","/partenariats/images/logo-raptim.jpg","Votre agence de voyages spécialisée dans l'Humanitaire");
  part[1] = new affiche_part("/partenariats/","/partenariats/images/bg-solidaire.gif","Boutique en ligne du commerce équitable");
  part[2] = new affiche_part("/partenariats/","/partenariats/images/logo_msc.jpg","MSC, un assureur au service de l’engagement");
  part[3] = new affiche_part("/partenariats/","/partenariats/images/logo_enercoop.jpg","Enercoop, l'énergie militante");


  var nb = part.length;
  var affiche=Math.round(Math.random(1)*(nb-1));
  disp("<a href="+part[affiche].destination+"><img src="+part[affiche].logo+" border='0' alt='' height='90' width='120' /></a><br /><a href="+part[affiche].destination+"><b>"+part[affiche].nom+"</b></a>");
}