/*********************
* Script de banière
* Par Emmanuel Rousseau
*  
* http://iquebec.ifrance.com/pixidream
* 
*
*********************/
function random_banner(){
  var dRandom = 0;
  var dateToday = 0;
  var tBanniere = 0;

  tBanniere = new Array();
  tBanniere[0] = '<a href="http://www.decmultimedia.net/%7Emaloneg01/thorvin/external.php?x=pixidream"><img src="http://www.decmultimedia.net/~maloneg01/thorvin/banner/thorvin.gif" width="468" height="68" border="0"></a>';
  tBanniere[1] = '<a href="http://kmeleon.sourceforge.net/"><img src="./img/kmbanner9.gif" width="468" height="68" border="0"></a>';
  tBanniere[2] = '<a href="http://iquebec.ifrance.com/pixidream/"><img src="./img/pix_banner.gif" width="468" height="68" border="0"></a>';
  tBanniere[3] = '<a href="http://www.linux.org"><img src="./img/linux_banner.gif" width="468" height="68" border="0"></a>';

  dRandom = Math.floor(Math.random() * (tBanniere.length));
  
  //n = tBanniere.length;
  return tBanniere[dRandom];
}
