msg = "Jesus said, 'I am the way, the truth and the life.  No man cometh to the Father but by me.";
spacer = "        ...";
pos = 0;
function ScrollMessage()
{
     window.status = msg.substring(pos, msg.length) + spacer + msg.substring(0,pos);
     pos++;
     if (pos > msg.length) pos = 0;
     window.setTimeout("ScrollMessage()",150);
}
ScrollMessage();