<!--
var news = new Array();
var dates = new Array();
var anchor = new Array();
news[0] = "Introducing VI Service Desk Version 5.0!";
dates[0] = "March 15, 2010";
anchor[0] = "anchor01";
news[1] = "VIS Welcomes Recent Customers - Manitowoc State Government and [In://ForM] France";
dates[1] = "February 15, 2010";
anchor[1] = "anchor02";
news[2] = "VIS Welcomes Recent Customers - Billabong Australia and Lund University Sweden";
dates[2] = "October 22, 2009";
anchor[2] = "anchor03";
news[3] = "VIS Achieves IBM Advanced Partner Status";
dates[3] = "July 20, 2009";
anchor[3] = "anchor04";
news[4] = "Welcome aboard to CORDSTRAP B.V. - Netherlands";
dates[4] = "June 16, 2009";
anchor[4] = "anchor05";
news[5] = "Read about Alpine Electronics personal experience with VI Service Desk";
dates[5] = "April 23, 2009";
anchor[5] = "anchor06";
news[6] = "VIS Welcomes Aboard Tompkins Trust Company";
dates[6] = "April 13, 2009";
anchor[6] = "anchor07";
news[7] = "New ROI Case Study: High Liner Foods...";
dates[7] = "December 3, 2008";
anchor[7] = "anchor08";
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;
}

// -->

