/* 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_idf.jpg","Région Ile de France");
  part[1] = new affiche_part("/partenariats/","/partenariats/images/logocg78b.jpg","Conseil général des Yvelines");
  part[2] = new affiche_part("/partenariats/","/partenariats/images/logoportail_mini.jpg","Le Portail Humanitaire");
  part[3] = new affiche_part("/partenariats/","/partenariats/images/logoSDS2012.jpg","Le Salon des Solidarités");


  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=40% width=60% /></a><br /><a href="+part[affiche].destination+"><b>"+part[affiche].nom+"</b></a>");
}
