<!--
// © Autor Dietmar Rabich 
// http://www.rabich.de


	  var timerID = null;
          var timerRunning = false;
          var id,pause=0,position=0;
          function marquee() {
                  var i,k,msg="Sicherheit    -    Rendite    -    Qualität                                                                                       ";
                  k=(30/msg.length)+1;
                  for(i=0;i<=k;i++) msg+=" "+msg;
                  document.marqueeform.marquee.value=msg.substring(position,position+130);
                  if(position++==130) position=0;
                  id=setTimeout("marquee()",1000/10); }
          function action() {
                  if(!pause) {
                          clearTimeout(id);
                          pause=1; }
                  else {
                          marquee();
                          pause=0; } }
      
//-->