<!--

var NS4 = (document.layers) ? 1 : 0;
var IE4 = (document.all) ? 1 : 0;

onload = start;

var quoteArray = new Array();
quoteArray[0] = "<font color=orange>&quot;The Charlotte Hornets professional basketball franchise depends on the Internet for league communications, marketing and public relations. We use an always-on broadband Internet connection that requires Internet security to protect confidential franchise and league information. A SonicWALL DMZ is used to provide firewall protection for all computers on the private network.&quot;|</font>";
quoteArray[1] = "<font color=orange>&quot;We were looking for an Internet security solution that allowed for broad versatility in addition to one that was cost-effective, and SonicWALL clearly came out on top.&quot;|</font>";
quoteArray[2] = "<font color=orange>&quot;Like the SonicWALL Internet security appliances, SonicWALL GMS impressed us with its advanced, user-friendly graphical user interface and setting up and monitoring security policies of hundreds of remote SonicWALLs across the Internet couldn't have been easier.&quot;|</font>";
quoteArray[3] = "<font color=orange>&quot;I have been a client of Connected Northwest for some time now and have been quite impressed with the wide variety of technology they deal with on a daily basis. From VPN's to Voice Over IP, they do it all.&quot;|Darold Stroud - Voicestream Wireless</font>";

var num = 0;

function start() {
  setInterval("update()", 20000);
}

function update() {
  lastnum = num;
  while(num == lastnum){
    num = Math.round(Math.random() * (quoteArray.length - 1));
    }
  display("banner", quoteArray[num]);
}

function display(id, str) {
  if (NS4) {
    with (document[id].document) {
      open();
      write(str);
      close();
    }
  } else {
    document.all[id].innerHTML = str;
  }
}

// -->

