message     =
  "                                                                                                                 ^" +
  "Welcome to, will you remember me dot com, the website of Gordon Dipple,^" +
  "I trust by viewing these pages you may get to know me,^" +
  "This site is constantly growing with the help and ideas of friends and colleagues,^" +
  "If you would like to say you have visited or have any suggestions, send me a message from the page above,^" +
  "I hope you enjoy your visit, please do come again, there will always be something new to see.^"
  
  scrollSpeed = 100
  lineDelay   = 2000
  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)
  }
scrollText(0)