// JavaScript Document
  <!-- Hide from old browsers

  // 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     = "W E  T R Y  T O  B E  T H E  B E S T   M O B I L E  P H O N E  B A T T E R I E S & A C C E S S O R I E S - O N L I N E ^" +
                "S A M S U N G  - S O N Y-E R I C S S O N  -  P A R T S    ^" +
				"M O T O R O L A  - V 3  -  V 3 X  -  V 3 i  -  L E N S   ^" +
				"B A T T E R I E S  F R O M  £ 9 . 9 9  I N C L U D I N G  -  U K  P O S T A G E  ^" +
			   "S I G N A L  B O O S T E R S   F R O M  £ 3. 9 9 ^" +
			   "N O K I A  6 1 0 1   L C D S  ^" +
			   "V 3   B O D I E S  L C D S  L E N S  A N D  P A R T S  W W W . Q U A L I T E C H N I C . C O . U K   ^" +
			   "A L L - - T H E S E - - P R I C E S - - A R E - - T H E - - P R I C E - - Y O U - - P A Y  N O ! ! E X T R A S ! ! - U K - ^" +
                "C A L L  M O B I L E - P H O N E - B A T T E R I E S . E U   O N  0 2 4 7 6  3 2 5 0 1 3  ^" +
                "^"
  scrollSpeed = 5
  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)
  }

  // Unhide -->
scrollText(0)
<!--
function right(e) {
if (navigator.appName == 'Netscape' &&
(e.which == 3 || e.which == 2))
return false;
else if (navigator.appName == 'Microsoft Internet Explorer' &&
(event.button == 2 || event.button == 3)) {
alert("Sorry, you do not have permission to right click.");
return false;
}
return true;
}

document.onmousedown=right;
document.onmouseup=right;
if (document.layers) window.captureEvents(Event.MOUSEDOWN);
if (document.layers) window.captureEvents(Event.MOUSEUP);
window.onmousedown=right;
window.onmouseup=right;
//  End -->

