var NS4 = (document.layers) ? 1 : 0;
var IE4 = (document.all) ? 1 : 0;

onload = start;

var ar = new Array();
ar[0] = "Call us today. We can help you control your system budget.<br />&nbsp;";
ar[1] = "We're here to make sure your system runs at maximum performance every working day.";
ar[2] = "Whatever your system, whatever the problem, expert help is only a phone call away.";
ar[2] = "Let us show you how to keep more of your hard earned money in your pocket.";
ar[3] = "Our business is keeping your business running.<br />&nbsp;";

var num = 0;

function start() {
  setInterval("update()", 5000);
}

function update() {
  display("banner", ar[num]);
  num++;
  if (num == ar.length) num = 0;
}

function display(id, str) {
  if (NS4) {
    with (document[id].document) {
      open();
      write(str);
      close();
    }
  } else {
    document.all[id].innerHTML = str;
  }
}
