<!--
  
    var NumberOfAds = 3;
var now = new Date()
var sec = now.getSeconds()
var AdNumber = sec % NumberOfAds;
AdNumber +=1;

if (AdNumber==1)

{

 url="http://www.intoxygene.com/artists/zaboitzeff.html";
 Graphic="http://www.intoxygene.com/images/bandeau.gif";
 width = "468"
 height = "60"

}

if (AdNumber==2)

{

 url="http://www.intoxygene.com/artists/steve-tallis.html";
 Graphic="http://www.intoxygene.com/images/bandeau-tallis.jpg";
 width = "468"
 height = "60"

}

if (AdNumber==3)

{

 url="http://www.ion-lesite.com/";
 Graphic="http://www.intoxygene.com/images/bandeau-ion.gif";
 width = "468"
 height = "60"

}

document.write('<center>');
document.write('<a href=\"' + url + '\" target="_blank">');
document.write('<img src=\"' + Graphic + '\" width=')
document.write(width + ' height=' + height + ' ');
document.write('border=0><br />');
document.write('</a>');
document.write('</center>');

  // -->