<!-- BOTTOM ANT LINE SCROLLER (load scroller() in BODY tag)
    //Requires the below variable to be declared in script tags in the head before this file is included.
    //var message = "Your satisfaction and repeat business is our primary goal. Toll-Free: 888.756.5188: Notebook Rental - Laptop Computer Rental - LCD Data Projector Rental - Macintosh PowerBook Rental."

function statusMessageObject(p,d) {
    this.mssg = message
    this.out = " "
    this.pos = position
    this.delay = delay
    this.i     = 0
    this.reset = clearMessage
}

function clearMessage() {
    this.pos = position
}

    var position = 100
    var delay  = 100
    var scroll = new statusMessageObject()

function scroller() {
    for (scroll.i = 0; scroll.i < scroll.pos; scroll.i++) {
        scroll.out += " "
    }
    if (scroll.pos >= 0) {
        scroll.out += scroll.mssg
    }
    else
        scroll.out = scroll.mssg.substring(-scroll.pos,scroll.mssg.length)
        window.status = scroll.out
        scroll.out = " "
        scroll.pos--
        if (scroll.pos < -(scroll.mssg.length)) {
            scroll.reset()
        }
        setTimeout ('scroller()',scroll.delay)
}

//-->
