// current headlines from spatialnews.com
var currDate, strOut;

// enter current date here 
currDate = "Nov. 02, 2000";

/* enter news link, title below. Example:

arNews1 = new Array("http://www.spatialnews.com/dailynews/2000/sep/11/news3.html","GeoSolucion becomes Space Imaging distributor");

Leave unused blank, ex: arNews15 = new Array("","");

*/
arNews1 = new Array("http://spatialnews.geocomm.com/dailynews/2001/may/04/news2.html","IDELIX Software Inc. Awarded NRC R&D Funding")
arNews2 = new Array("http://spatialnews.geocomm.com/dailynews/2001/sep/19/news6.html","Eletropaulo's ArcGIS/ArcFM Enterprise GIS");
arNews3 = new Array("http://spatialnews.geocomm.com/dailynews/2001/sep/20/news8.html","The Ontario Ministry of Natural Resources Receives Award");
arNews4 = new Array("http://spatialnews.geocomm.com/dailynews/2001/sep/06/news3.html","ESRI's ArcGIS Family of Software Passes Open GIS Tests");
arNews5 = new Array("http://spatialnews.geocomm.com/dailynews/2001/apr/23/news11.html","ArcView 8.1 Now Shipping");
arNews6 = new Array("http://spatialnews.geocomm.com/dailynews/2001/feb/27/news6.html","ESRI Announces Model Project Competition K-12");
arNews7 = new Array("http://spatialnews.geocomm.com/dailynews/2001/feb/26/news5.html","ESRI’s ArcLogistics Route Helps Velocity Express");
arNews8 = new Array("http://spatialnews.geocomm.com/dailynews/2001/jun/14/news5.html","ESRI Education User Conference Nearing")
arNews9 = new Array("http://spatialnews.geocomm.com/dailynews/2001/jun/12/news3.html","South American Electric Cooperative Selects ESRI/Miner & Miner ")
arNews10 = new Array("http://spatialnews.geocomm.com/dailynews/2001/jun/12/news6.html","Avantra Geosystems Announces MI2AP")
arNews11 = new Array("http://spatialnews.geocomm.com/dailynews/2001/jun/05/news2.html","ArcIMS 3.1 Is Now Shipping ")
arNews12 = new Array("http://spatialnews.geocomm.com/dailynews/2001/may/04/news2.html","Miner & Miner Announces the Latest Release of ArcFM")
arNews13 = new Array("","");
arNews14 = new Array("","");
arNews15 = new Array("","");


strOut = "<br><br><table border=\"1\" cellpadding=\"1\" cellspacing=\"1\">";
strOut += "<tr><td bgcolor=\"#CCCCCC\" align=\"center\"><font face=\"verdana\" size=\"1\"><b>ESRI News at The GeoCommunity</b></font></td></tr>";
strOut += "<tr><td bgcolor=\"#ffffff\" align=\"left\" width=\"300\"><font face=\"verdana\" size=\"1\">";

for (var i=1;i<16;i++) {
  cNode = eval("arNews" + i);
  if (cNode[0] != "") {
  strOut += "<li><a href=\"" + cNode[0] + "\" target=\"_blank\">" + cNode[1] + "</a><br><br>";
  }
} 

strOut += "</font></td></tr></table><br><br>";


document.write(strOut);


