<!--
var news = new Array();
var dates = new Array();
var anchor = new Array();
news[0] = "VIS Welcomes New Customers to Begin 2012.";
dates[0] = "January 10, 2012";
anchor[0] = "anchor01";
news[1] = "VIS Welcomes Power Partners, Inc.";
dates[1] = "July 21, 2011";
anchor[1] = "anchor02";
news[2] = "Read about High Liner Foods ROI";
dates[2] = "June 29, 2011";
anchor[2] = "anchor03";
news[3] = "VIS Earns Chanel's Business";
dates[3] = "May 28, 2011";
anchor[3] = "anchor04";
news[4] = "VIS Welcomes The Paragon Group";
dates[4] = "April 4, 2011";
anchor[4] = "anchor05";
news[5] = "Read Manitowoc County's Testimonial";
dates[5] = "January 31, 2011";
anchor[5] = "anchor06";
news[6] = "A Warm Thank You from VIS";
dates[6] = "December 22, 2010";
anchor[6] = "anchor07";
news[7] = "VIS Proud to Earn Radio Free Europe's Business";
dates[7] = "September 22, 2010";
anchor[7] = "anchor08";
news[8] = "VIS Welcomes Merchants Bank";
dates[8] = "August 23, 2010";
anchor[8] = "anchor09";
news[9] = "Read about Alpine Electronics personal experience with VI Service Desk";
dates[9] = "July 7, 2010";
anchor[9] = "anchor10";
news[10] = "VIS Partners with Essential Business Software";
dates[10] = "June 3, 2010";
anchor[10] = "anchor11";
function writeNews() {
  var newsStr = "";
  var container = window.document.getElementById("news");
  if (container) {
    for (var x=0; x<news.length; x++) {
      newsStr += "<table width='100%' border='0' cellpadding='0' cellspacing='0'>";
	  newsStr += "<tr><td width='180' height='' valign='top' style='background-color:#edf1f6;text-align:left;font-size: 11px;font-family:verdana;font-weight:normal;'>";
	  newsStr += "<p style='margin-top:5px;margin-left:5px;margin-right:5px;margin-bottom:5px;font-size: 11px;font-family: verdana;'>";
	  newsStr += "<font color='#5b75a3'><a href='VIS-Press-Releases.html#" + anchor[x] + "')>" + news[x] + "<\/a><br><\/font>";
	  newsStr += "<font face='Verdana, Arial, Helvetica, sans-serif' size='-3'>" + dates[x] + "</font><\/p><\/td><\/tr><\/table>\n";
    }
    container.innerHTML = newsStr;
  }

  return;
}

// -->


