<!-- **************************************************************************************** -->
<!-- *                                                                                      * -->
<!-- *   Status Bar Message,  Displays text scrolling from right to left.  Repeats.         * -->
<!-- *                                                                                      * -->
<!-- **************************************************************************************** -->
<!-- Hide from browsers that do not support JavaScript
var msg ="      Proofreading - Missing words, punctuation, spelling, wrong word, abbreviations.";
var delay= 150;
var timerId;
function ShowStatLine()
   {
   window.status = msg;

   msg = msg.substring(1,msg.length) + msg.substring(0,1);
   timerId = setTimeout ("ShowStatLine()",delay);
   }
   // stop hiding from browsers that do not support JavaScript -->

