// current headlines from spatialnews.com
var currDate, strOut;

// enter current date here 
currDate = "Dec. 16, 2001";

/* 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/jun/15/safe.html","Safe products used in GeoStor On-line Data Delivery System");
arNews2 = new Array("http://spatialnews.geocomm.com/dailynews/2001/jun/15/news10.html","City of Waterville, Maine Publishes Online Tax Map");
arNews3 = new Array("http://spatialnews.geocomm.com/dailynews/2001/jun/13/news5.html","Autodesk extends support for compressed ECW images ");
arNews4 = new Array("http://spatialnews.geocomm.com/dailynews/2001/jun/13/news6.html","The Urban Navigator Is Launched on the Internet ");
arNews5 = new Array("http://spatialnews.geocomm.com/dailynews/2001/jun/13/news9.html","Woolpert To Build Randolph County’s Property GIS");
arNews6 = new Array("http://spatialnews.geocomm.com/dailynews/2001/jun/11/syncline.html","Island County, Wash., Subscribes To MapCiti ");
arNews7 = new Array("http://spatialnews.geocomm.com/dailynews/2001/jun/05/news2.html","ArcIMS 3.1 Is Now Shipping ");
arNews8 = new Array("http://spatialnews.geocomm.com/dailynews/2001/mar/19/news6.html","ESRI Announces MapObjects Upgrade Offer ");
arNews9 = new Array("http://spatialnews.geocomm.com/dailynews/2001/mar/15/news2.html","Platform Support Completes Viewing Options for MrSID");
arNews10 = new Array("http://spatialnews.geocomm.com/dailynews/2001/mar/12/news4.html","Open Roads shows the way with eMapSite");
arNews11 = new Array("http://spatialnews.geocomm.com/dailynews/2001/mar/12/news9.html","ESRI Announces ArcGIS Seminar Series");
arNews12 = new Array("http://spatialnews.geocomm.com/dailynews/2001/mar/09/news11.html","GDT Joins Geography Network");
arNews13 = new Array("http://spatialnews.geocomm.com/dailynews/2001/feb/27/news2.html","San Mateo County Standardizes on GeoMedia");
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>WebMapping 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);


