<!-- 

// Status-line ticker from www.aventurecanada.com

// CHANGE THESE TO ALTER THE SCROLL SPEED

ScrollSpeed = 800;   // milliseconds between scrolls (80 trop rapide)

ScrollChars = 10;    // chars scrolled per time period (1 trop rapide)

Prodexpo = false;

function SetupTicker() {

  today = new Date();
  year  = today.getFullYear();
  month = today.getMonth(); // 0 to 11
  day   = today.getDate(); // 1 to 31
  //alert("Annee="+year);

  // add space to the left of the message
  msg = "         .   .   .          ";

  // PUT YOUR MESSAGE HERE, USE += TO ADD THEM TOGETHER

  // msg += "Bienvenue chez Mariebel - www.mariebel.com    ";
  // msg += "Venez nous rendre visite au SIAL, du 20 au 24 Octobre 2002";
  // msg += " .   .   .          ";
  // msg += "Toutes les infos à notre rubrique Salons/Expos";

  // + Noel: du 20/12 au 31/12
  // 1er de l'An: du 30/12 au 10/01
  if( (month == 11) && (day>19)) noel = true; else noel = false;
  if( ((month == 11) && (day>29)) || ((month == 0) && (day<32)) ) { // and AND or OR
     nvel_an = true;
  } else nvel_an = false;
  
  // maj de l'année qd on est encore en Décembre = 11
  if( month == 11 && nvel_an ) year=year+1;
  
  // + salon PRODEXPO/prodexpo: du 07/02/2004 au 13/02/2004
  if( year==2004 ) {
      if( (month == 1) && (day<13) ) {
       Prodexpo = true;  
      } else if( month == 0 ) {
       Prodexpo = true;  
      } else {
       Prodexpo = false; }
  }


  if( noel && nvel_an ){
  msg += "Joyeux Noël et Bonne Année " + year +" !"; 
  msg += "         .   .   .          ";
  msg += "Merry Christmas and Happy New Year " + year +" !";
  msg += "         .   .   .          ";
  msg += "Fröhliche Weihnachten und ein glückliches Neues Jahr " + year +" !";
  } else { 
    if( noel){
  msg += "Joyeux Noël !"; 
  msg += "         .   .   .          ";
  msg += "Merry Christmas !";
  msg += "         .   .   .          ";
  msg += "Fröhliche Weihnachten !";
    } else {
    if( nvel_an) {
  msg += "Bonne Année " + year +" !"; 
  msg += "         .   .   .          ";
  msg += "Happy New Year " + year +" !";
  msg += "         .   .   .          ";
  msg += "glückliches Neues Jahr " + year +" !";
    } else msg="";
  }
  }

  //alert("Prodexpo="+Prodexpo + " ,true="+true + " ,false="+false);

  if( Prodexpo ){
  msg += "NOUVEAU ! Retrouver Mariebel sur le salon PRODEXPO de Moscou";
  msg += ", du 9 au 13 Fevrier 2004";
  msg += " .   .   .          ";
  msg += "Toutes les infos à notre rubrique Salons/Expos";
  msg += " .   .   .          ";
  msg += "NEW ! Come and join Mariebel to the PRODEXPO exhibit in Moscow";
  msg += ", February 9 to 13 2004";
  msg += " .   .   .          ";
  msg += "All info on the Exhibit link";
  msg += " .   .   .          ";
  }

  // this starts the ticker
  
  //alert("msg="+msg)
  
  if( msg != "") RunTicker();

}



function RunTicker() {

  window.setTimeout('RunTicker()',ScrollSpeed);

  window.status = msg;

  msg = msg.substring(ScrollChars) + msg.substring(0,ScrollChars);

}



// Start the ticker code

SetupTicker(); //ligne OK mais rien a afficher pour l'instant



<!-- end -->
