// All you have to do is put another text in the variable message.
// Don't forget to break all lines with a ^
// When you do not place a ^ at the end of all the message, the
// message will not repeat

  message     = "Call Day or Night 902 021 888 in Spain or FREE from UK 0800 081 1939^" +
                "^"
  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
      pauze  = scrollSpeed
    }
    else {
      pauze = lineDelay
      txt   = ""
      if (pos == message.length-1) pos = -1
    }
    pos++
    setTimeout("scrollText('"+pos+"')",pauze)
  }
//call it below
scrollText(0)

// Hide script from old browsers
	function Item (url) {newWindow = window.open(url , "newjavapop", "width=550,height=400,resizable=yes,menubar=no,directories=no,toolbar=no,scrollbars=yes,status=yes")}
// End hiding script from old browsers