// JavaScript Document
	



  	<!-- Hide from old browsers

  	message     = "Welkom op linkplaatsen.nl^" +
                "De site waar u al uw informatie kunt vinden ^" +
                "Zet hier gratis uw link^" +
                "Banner plaatsen hoeft niet duur te zijn.^" +
                "Dit kan al v.a. € 3,00 per maand.^" +
                "Zie ook de anderen pagina's^" +
                "^"
  	scrollSpeed = 25
  	lineDelay   = 3000

  	// 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)
