/*
Copyright © 2004 - Richard Dell'Agnola
URL  : http://www.richard-dellagnola.com
MAIL : contact@richard-dellagnola.com
*/

function SetStatusbarText (strText)
{
  if (typeof (strText) == "undefined")
    window.status = "Bienvenue sur le site de Richard Dell'Agnola";
  else
  {
    window.status = strText;
  }
}

SetStatusbarText ();


