<!-- **************************************************************************************** -->
<!-- *                                                                                      * -->
<!-- *   Status Bar Message,  Displays text scrolling from right to left.  Repeats.         * -->
<!-- *                                                                                      * -->
<!-- **************************************************************************************** -->
<!-- 
var speed = 50	// Value range: 0-?, Larger numbers scroll slower.
var pause = 2000	// Value range: 0-?, Larger numbers delay image longer
var timerID = null
var bannerRunning = false
var ar = new Array()
ar[0] = "  Wireless Networking Solutions for laptops or desktop PCs!                            "
ar[1] = "  Computer Networking without wires!   No more ongoing wiring maintenance.             "
ar[2] = "  Ad hoc peer-to-peer systems are substantially lower cost than wired systems!         "
ar[3] = "  Server, Desktop, and Laptop.  All wireless and portable!   Why have a laptop that is tied to the wall?           "
ar[4] = "  Wireless Office Solutions!  Keyboards, Mice, Phone Systems.                          "
ar[5] = "  No more sneaker net!                                                                 "
ar[6] = "  Share resources such as hard drives, printers, scanners, even the Internet connection!            "
ar[7] = "  Works through walls and floors, even across the street!                              "
ar[8] = "  Historical building may have restrictions on wiring, no problem.                     "
ar[9] = "  Rental property may have restrictions on wiring, no problem.                         "
ar[10] = "  Additional 128-bit encryption per session/logon, and random keys increase security.              "
//Alcohol & calculus don't mix. Never drink & derive.
//Man is the only animal that laughs and has a state legislature. - Samuel Butler
ar[11] = "  Blessed are the Geeks, for they shall Internet the earth.              "
var currentMessage = 0
var offset = 0
function showBanner()
        {
        var text = ar[currentMessage]
        if (offset < text.length)
           {
           if (text.charAt(offset) == " ")
              offset++
           var partialMessage = text.substring(0, offset + 1)
           window.status = partialMessage
           offset++
           timerID = setTimeout("showBanner()", speed)
           bannerRunning = true
           }
       else
           {
           offset = 0
           currentMessage++
           if (currentMessage == ar.length)
              currentMessage = 0
           timerID = setTimeout("showBanner()", pause)
           bannerRunning = true
           }
      }
function stopBanner()
        {
        if (bannerRunning)
                clearTimeout(timerID)
        bannerRunning = false
        }
function startBanner()
        {
        stopBanner()
        showBanner()
        }
function ShowStatLine()
	{
	startBanner()
	}
// -->