<!-- Begin

// NOTE: If you use a ' add a slash before it like this \'

<!-- Hide from old browsers

  // All you have to do is type your text in the variable message lines.
  // Don't forget to break all lines with a ^
  // If you forget to place a ^ at the end of all the messages, the message will stop at that line.

  message    = "   What do our clients say?^" +
               "     'I - am - impressed! Now I know why we use a Technical Author...'^" +
               "     'We've never had Manuals as good as this before!'^" +
               "     'I hope they pay you a lot of money, my friend - you're worth every penny!'^" +
               "     'You are stealing the show at the moment. It has been well received.'^" +
               "     'A lot of online Help tends to be very dry, very hard work, but yours are a good read.'^" +
               "     'The help file has been very well received by our staff and customers.'^" +
               "     'You've given us about 12 months of customer feedback in just a few weeks!'^" + 
               "     'New staff are training themselves. I give them one procedure to learn, and they're moving on to the next one.'^" +
               "     'Everyone at NDC was extremely pleased with your work.'^" +
               "     'You've given us more than just the Help text, you've given us an outside view. It's been invaluable.'^" + 
               "     'What you have given us is of more value than what we paid you.'^" +
               "     'The Procedures Guide ... looks really great and extremely user friendly.'^" +
               "     'If you ever need a reference site in the future, I will be happy to help in any way I can.'^" +
               "     'There has been some excellent feedback. Everyone is saying that the online Help text is very well written.'^" +
               "^"
               
  scrollSpeed = 25
  lineDelay   = 1500

  // Do not change the text below //

  txt         = ""

  function scrollText(pos) {
    if (message.charAt(pos) != '^') {
      txt    = txt + message.charAt(pos)
      status = txt
      pause  = scrollSpeed
    }
    else {
      pause = lineDelay
      txt   = ""
      if (pos == message.length-1) pos = -1
    }
    pos++
    setTimeout("scrollText('"+pos+"')",pause)
  }

  // Unhide -->
scrollText(0)

function MM_openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}
//-->



//  End -->

