var msg1 = "Keep looking here for the latest Cactus LUG information!; ";
var msg2 = "Our April 8th meeting will be at the hp Offices; ";
var msg3 = "Subject - Getting Mobile: Casting off the Wired World; ";
var msg = msg1 + msg2 + msg3;
var spacer = " *   *   *   ";
var pos = 0;

function ScrollStatus() {
  window.status = msg.substring(pos, msg.length) + spacer + msg.substring(0, pos);
  pos++;
  if(pos > msg.length) pos=0;
  window.setTimeout("ScrollStatus()",150);
}

function ScrollDisplay() {
  document.Scroll.Display.value = msg.substring(pos, msg.length) + spacer + msg.substring(0, pos);
  pos++;
  if(pos > msg.length) pos=0;
  window.setTimeout("ScrollDisplay()",150);
}
