var string=""
function Msg() {
    if (string == "")
    {
        for (var ii = 0; ii < 120; ii += 10) {string = string + "          "}
        string = string + "Check out Vicki's new book offerings on the Products page... and events for Karen and Vicki on the Calendar page..."
    }
    else
    {
        string = string.substring(2, string.length)
    }
    window.status = string
    JSCTimeOutID = window.setTimeout('Msg()',100)
}
JSCTimeOutID = window.setTimeout('Msg()',500);