
    var timerID = null;
     var timerRunning = false;
     var id,pause=0,position=0;
     function marquee() {
       var i,k,msg='[Torten-Attentat auf Kohl]   [Sex im All jetzt doch moeglich]   [Das Papageien-Wunder von Koeln]  ';
       k=(75/msg.length)+1;
       for(i=0;i<=k;i++) msg+=" "+msg;
       document.marqueeform.marquee.value=msg.substring(position,position+100);
       if(position++==69) position=0;
       id=setTimeout("marquee()",1000/5);
     }
     function action() {
       if(!pause) {
       clearTimeout(id);
       pause=1; }
        else {
       marquee();
       pause=0; }
     }
