
<!-- Hide the script from old browsers --

var timerID = null;
var timerRunning = false;
var id,pause=0,position=0;
function ticker() {
        var i,k,msg="  +++Bitte beachten Sie unseren monatlichen Praxistip+++  ";
        k=(10/msg.length)+1;
        for(i=0;i<=k;i++) msg+=" "+msg;
        document.form2.ticker.value=msg.substring(position,position+108);
        if(position++==208) position=0;
        id=setTimeout("ticker()",1000/10); }
function action() {
        if(!pause) {
                clearTimeout(id);
                pause=1; }
        else {
                ticker();
                pause=0; } }
// --End Hiding Here -->

