var msg="L o v e is a m a g n i f i c e n t f l o w e r on t h e e d g e of a c l i f f , to g a t h e r it we n e e d c o u r a g e . ";var interval = 180; seq = 0; function Scroll() { len = msg.length; window.status = msg.substring(0, seq+1); seq++; if ( seq >= len ) { seq = 0 }; window.setTimeout("Scroll();", interval );}Scroll();