<!-- 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    = "   Here are some comments from our Courses...^" +
               "     'I would like to commend you on a thorough introduction into technical writing.'^" +
               "     'Far more useful than I thought it would be.'^" +
               "     'Excellent! Very informative, lots to think about. It provided me with some great tools to produce documentation.'^" +
               "     'It was my pleasure to attend, which is something I have never before said about a training course.'^" + 
               "     'Many thanks for the course yesterday. I found it extremely useful, and so did my colleagues.'^" +
               "     'A good course, no jargon and no waffle.'^" +
               "     'A very well presented and delivered course.'^" +
               "     'It was a great course for getting all members of the team up to the same level.'^" +
               "     'Very good. Made the most of what is not a very interesting subject for a group of programmers!'^" +
               "     'The document planning was very good. It had a direct application to our work.'^" +
               "     'Very good. Exceeded my expectations! I was wondering how to make a seemingly arduous task less daunting.'^" +
               "     'I learned a lot - thank you.'^" +
               "^"
               
  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 -->