  //script by Christophe LE BOT (Axodi SA)
//préciser nombre de bannières
  choix=new Array(9);

  function liste(chemin) {
  this.chemin=chemin;
  }
//entrer les noms des bannières
  choix[0]=new liste("<A href='/site/axonews/axonews.html'><IMG src='/elm/ban/axonews.gif' width='467' height='59' border='0' alt='Lire Axonews'></A>");
  choix[1]=new liste("<A href='/site/offre/axotest.html'><IMG src='/elm/ban/axotest2.gif' width='467' height='59' border='0' alt='Informations sur Axotest'></A>");
  choix[2]=new liste("<A href='/site/download/axonews.html'><IMG src='/elm/ban/indus.gif' width='467' height='59' border='0' alt='Lire le guide Industrialisation'></A>");
  choix[3]=new liste("<A href='/site/offre/axofidef.html'><IMG src='/elm/ban/axofidef.gif' width='467' height='59' border='0' alt='Informations sur Axofi-Define'></A>");
  choix[4]=new liste("<A href='/site/offre/axojump.html'><IMG src='/elm/ban/axojump.gif' width='467' height='59' border='0' alt='Informations sur Axojump'></A>");
  choix[5]=new liste("<A href='/site/offre/axofidup.html'><IMG src='/elm/ban/axofidup.gif' width='467' height='59' border='0' alt='Informations sur Axofi-Dupli'></A>");
  choix[6]=new liste("<A href='/contact/contact.html'><IMG src='/elm/ban/contact.gif' width='467' height='59' border='0' alt='Contacter Axodi'></A>");
  choix[7]=new liste("<A href='/site/offre/axofigen.html'><IMG src='/elm/ban/axofigen.gif' width='467' height='59' border='0' alt='Informations sur Axofi-Gener'></A>");
  choix[8]=new liste("<A href='/site/offre/progiciels.html'><IMG src='/elm/ban/normdb.gif' width='467' height='59' border='0' alt='Informations sur Axonorm et AxoDB'></A>");

  function aleat(a,b) {
  var x=-1;
  while (x<a) {
  x=Math.round(Math.random()*b);
  }
  return x;
  }

  function affiche() {
  var bad="<FONT size='2' face='sans-serif'><B>Votre navigateur est incompatible avec la configuration minimale demand&eacute;e&nbsp;: consultez la <A href='/aide/aide.html'>page Aide</A>.</B></FONT>", version=parseFloat(navigator.appVersion);
//préciser numéros des bannières de 0 à n
  var x=aleat(0,8);
    if (navigator.appName.indexOf('Netscape') != -1) {
      if (version >= 3.0) document.write(choix[x].chemin);
      else document.write(bad);
    } else if (navigator.appName.indexOf('Microsoft') != -1) {
      if (version >= 4.0) document.write(choix[x].chemin);
      else document.write(bad);
    } else document.write(bad);
  }