// Paul L Herrman
var id,pause=0,position=0;
function donator()
{
        // variables declaration
       var msg="                    My thanks to the following contributors - Alan, K2MWU, NY USA - - - Yngvi, TF3Y, Reykjavik Iceland - - - Elwood, WB0OEW, AZ USA  - - - Jean-Yves, F8CHR, Limousin France - - - Ronald, KC9QWS, IL USA - - - Jim, N1TNX, CT USA - - - Peter, SV3AUW/M0LPT, Kalamata Greece | Thank you for your support!           "
       if (msg != "...")
        {
           // increase msg 
           k=(66/msg.length)+1;
            for(i=0;i<=k;i++) msg+=" "+msg;
 
           // show it to the window
           document.form2.donator.value=msg.substring(position,position+80);
 
            // show it to the status bar
            //window.status=msg.substring(position,position+66);
 
           // set new position
           if(position++==msg.length) position=0
 
            // repeat at entered speed
            id=setTimeout("donator()",1000/5); 
         }
} 
