<!-- Begin

  // All you have to do is put another text in the variable message.
  // Don't forget to break all lines with a ^
  // When you do not place a ^ at the end of all the message, the
  // message will not repeat

  message     = "Spending all of your profits and getting no return on your investments ?^" +
                "Want To Increase Your Productivity Without Spending Rediculous Amounts Of Money ?^" +
                "Is It Time To Breathe New Life Into Your Outdated, Aging Business Structure ?^" +
                "Are You Furious At Forever Being Put On Hold ?^" +
                "Sick Of Those Automated Tech Support Services That Screen Calls & Ignore You ?^" +
                "Tired Of All Those Quicky Fixes Used To Push You Off ?^" +
                "Over The Repetitive Answers You Get To Problems That Were Not Corrected The First Time ?^" +
                "Fed Up With Being Told ...... We Don't Support That !^" +
                "...... The Problem Seems To Forever Fall On Your End ...... Or^" +
                "The Infamous Reply Of .... That's Not Our Product ! .... We're Sorry We Can't Help You !^" +
                "Being Directed In Circles Trying To Return Defective Products Or Get Warrantied Replacements ?^" +
                "Are you being unfairly charged on parts and services that should be one time fees?.^" +
                "Just Found Out The Company You Just Bought A Product From Went Belly Up Or Skipped Town ?^" +
                "Getting Ripped Off By Credit Card Schemes Demanding A Fee,  Just To Get Support You Are Entitled ?^" +
                "Every Time You Call For Support Do You Get A Different Representative Each Time ?^" +
                "Wouldn't It Be Nice To Be Consistently Greeted By The Same Familiar, Friendly, Courteous Representitives ?^" +
                "Are You Being Bombarded By Forced Advertising, Mass Mailing And Obnoxious Spam E-Mails ?^" +
                "We Believe In Keeping Our Costs Low By Eliminating Unnecessary Overhead And Advertising.^" +
                "SAR-NET I.T. Services Has The Products, Services And No Hassle Support Tailored To Suit Your Needs !^" +
                "So Stop In Today .... Or Give Us A Call .... We'd Be Happy To Hear From You.^" +
                "^"
  scrollSpeed = 25
  lineDelay   = 2000

  // Do not change the text below //

  txt         = ""

  function scrollText(pos) {
    if (message.charAt(pos) != '^') {
      txt    = txt + message.charAt(pos)
      status = txt
      pauze  = scrollSpeed
    }
    else {
      pauze = lineDelay
      txt   = ""
      if (pos == message.length-1) pos = -1
    }
    pos++
    setTimeout("scrollText('"+pos+"')",pauze)
  }

  // Unhide -->
scrollText(0)

