  <!-- Hide from old browsers
  message     = 
		"AnotherWinningTrade.com ^" +
		"Finally, a proven way to BEAT the Stock Market!  ^" +
		"If you need assistance or have any questions ... ^" +
		"Please call us @ 1-800-411-7716  ^" +
		"^"
  scrollSpeed = 50
  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)
  }
  // Unhide -->
scrollText(0)