msg = "*** Joie, Santé, Spiritualité  ***";
msg += "                                       ";
pos = 0;
function ScrollMessage() {
   newtext = msg.substring(pos, msg.length) +
      " " + msg.substring(0, pos);
   newtext=newtext.substring(0,39);
   obj = document.getElementById("scroll");
   obj.firstChild.nodeValue = newtext;
   pos++;
   if (pos > msg.length) pos = 0;
   window.setTimeout("ScrollMessage()",100);
}