<!--
// FAVORIS
function addFavorites(lang)
{
  var message = new Array();
  message["fr"] = "Cette fonction n\'est proposée que par certains navigateurs.\n\n"
                   + "        Tu peux aussi appuyer sur Control + D\n"
                   + "                ou Pomme + D sur Macintosh\n"
                   + "             pour ajouter ce site à tes favoris\n";

  message["uk"] = "For Windows users, press the \"control\" key and the \"D\" key at the same time.\n\n"
                   + "   For Mac users, press the \"apple\" key and the \"D\" key at the same time.";

  if ( window.sidebar )
  {
    window.sidebar.addPanel(document.title, document.URL, "");
  }
  else if ( window.external )
  {
    window.external.AddFavorite(document.URL, document.title);
  }
  else
  {
  alert(message[lang]);
  }
}


// TEXTE DEFILANT
var statusStep = 1;
var statusText = document.title;

function showStatusText()
{
  if ( statusStep == 1 ) { window.status = '..... ' + statusText + ' .....'; }
  if ( statusStep == 2 ) { window.status = ':.... ' + statusText + ' ....:'; }
  if ( statusStep == 3 ) { window.status = '::... ' + statusText + ' ...::'; }
  if ( statusStep == 4 ) { window.status = ':::.. ' + statusText + ' ..:::'; }
  if ( statusStep == 5 ) { window.status = '.:::. ' + statusText + ' .:::.'; }
  if ( statusStep == 6 ) { window.status = '..::: ' + statusText + ' :::..'; }
  if ( statusStep == 7 ) { window.status = '...:: ' + statusText + ' ::...'; }
  if ( statusStep == 8 ) { window.status = '....: ' + statusText + ' :....'; statusStep = 0; }
  setTimeout("showStatusText()", 50);
  statusStep++;
}



//-->

