/* author: mburtonca@sympatico.ca */
/* Creation date: 05/28/2004 */

<!--
// You may edit the message below.
var statBarMsg = " " +
                
"Welcome to The Royal Canadian Legion Branch # 138  Merritton, Ontario....... " +
               
                 "              " ;

function startStatusScroller()
{
    window.status = statBarMsg;
    statBarMsg = statBarMsg.substring(1, statBarMsg.length) + statBarMsg.substring(0, 1)
    setTimeout("startStatusScroller()", 150)
}
//-->