<!-- **************************************************************************************** -->
<!-- *                                                                                      * -->
<!-- *   Shows a message in the status bar area.                                            * -->
<!-- *                                                                                      * -->
<!-- **************************************************************************************** -->
<!-- Hide from browsers that don't support JavaScript
var msg ="                            Some Shadow Art is hard to create.  You have to be physically fit.";
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 -->
