now=new Date();
day=now.getDay();

function GetCode()
{
var locationlist = new URLList (
                "http://www.arobase.org/spam/index.htm",
                "http://www.arobase.org/sons/index.htm",
                "http://www.arobase.org/outils/index.htm",
                "http://www.arobase.org/cartes/index.htm",
                "http://www.arobase.org/services/rechercher.htm",
                "http://www.arobase.org/culture/email-courriel.htm",
                "http://www.arobase.org/mobile/index.htm",
                "http://www.arobase.org/mobile/sms.htm",
                "http://www.arobase.org/services/bonsplans.htm",
                "http://www.arobase.org/nomade/voyage.htm",
                "http://www.arobase.org/mobile/imode.htm",
                "http://www.arobase.org/adresses/changement.htm"
                );
var imglist = new URLList (
                "Luttez contre les pubs sauvages dans votre boîte aux lettres",
                "Changez le son d'arrivée du courrier",
                "Découvrez les outils qui changent le mail",
                "Envoyez les plus belles cartes postales",
                "Recherchez l'adresse e-mail d'un vieil ami",
                "Doit-on dire <i>e-mail</i> ou <i>courriel</i>&nbsp;?",
                "Vos e-mails sur votre téléphone mobile&nbsp;!",
                "Un SMS pour vous prévenir de l\'arrivée d\'un nouveau message&nbsp;?",
                "Mémos, SMS, recherche d'emploi&nbsp;: découvrez les bons plans du mail&nbsp;!",
                "Tous les moyens de consulter son e-mail en voyage",
				"Consultez votre courrier sur votre mobile i-mode",
                "Nos conseils pour réussir un changement d\'adresse e-mail"
                );
        num = Math.round ( ( rand.next() * 11) );
        txt = '<b>Ailleurs sur Aro...</b><br><a href=\"'+locationlist.list[num]+'\">'+imglist.list[num]+'</a>';
return txt;
}

function URLList () {
  var argv = URLList.arguments;
  var argc = argv.length;
  this.list = new Object();
  for (var i = 0; i < argc; i++)
    this.list[i] = argv[i];
  this.count = argc;
  return this;
}

function NextRandomNumber()  {
  var hi   = this.seed / this.Q;
  var lo   = this.seed % this.Q;
  var test = this.A * lo - this.R * hi;
  if (test > 0)
    this.seed = test;
  else
    this.seed = test + this.M;
  return (this.seed * this.oneOverM);
}

function RandomNumberGenerator() {
  var d = new Date();
  this.seed = 2345678901 +
    (d.getSeconds() * 0xFFFFFF) +
    (d.getMinutes() * 0xFFFF);
  this.A = 48271;
  this.M = 2147483647;
  this.Q = this.M / this.A;
  this.R = this.M % this.A;
  this.oneOverM = 1.0 / this.M;
  this.next = NextRandomNumber;
  return this;
}
var rand = new RandomNumberGenerator();
document.write(this.href=GetCode());