// current headlines from spatialnews.com
var currDate, strOut;

// enter current date here 
currDate = "Nov. 01 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/events/gisday2002/","GISDay 2002");
arNews2 = new Array("http://store.geocomm.com/viewproduct.phtml?catid=25&productid=1278","ETOPO2 Global 2 Minute Elevations");
arNews3 = new Array("http://geobids.geocomm.com","GeoCommunity GeoBids");
arNews4 = new Array("http://spatialnews.geocomm.com/features/korem_july02/","Featured Government Solution");
arNews5 = new Array("http://imaging.geocomm.com/features/noaa_lobster/","Sustaining Lobster Fisheries");
arNews6 = new Array("http://geoimaging.geocomm.com","GeoCommunity GeoImaging!");
arNews7 = new Array("http://spatialnews.geocomm.com/events/esriuc2002/","ESRI User Conf. coverage");
arNews8 = new Array("http://spatialnews.geocomm.com/features/geospatialworld2002/geomedia50.html","GeoMedia 5.0 Product Update");
arNews9 = new Array("http://spatialnews.geocomm.com/features/geospatialworld2002/","Reports & Images from GeoSpatial World");
arNews10 = new Array("http://www.gisdatadepot.com/doqq/","GISDataDepot DOQQ Home");
arNews11 = new Array("http://spatialnews.geocomm.com/features/viewers2002/","GIS Viewing Tools");
arNews12 = new Array("http://store.geocomm.com/viewproduct.phtml?catid=26&productid=1258","FEMA Q3 Data");
arNews13 = new Array("","");
arNews14 = new Array("","");
arNews15 = new Array("","");

strOut = "<table border=\"0\" cellpadding=\"1\" cellspacing=\"1\">";
strOut += "<tr><td bgcolor=\"#000000\" align=\"center\"><font face=\"verdana\" color=\"#ffffff\" size=\"1\"><b>NEW STUFF!</b></font></td></tr>";
strOut += "<tr><td bgcolor=\"#efefef\" align=\"left\" width=\"150\"><font face=\"verdana\" size=\"1\">";

for (var i=1;i<16;i++) {
  cNode = eval("arNews" + i);
  if (cNode[0] != "") {
  strOut += "<IMG src=\"http://spatialnews.geocomm.com/images/blacksquare.gif\" width=\"3\" height=\"3\"> <a href=\"" + cNode[0] + "\">" + cNode[1] + "</a><br>";
  }
} 
strOut += "<br><tr><td bgcolor=\"#000000\" align=\"center\"><font face=\"verdana\" color=\"#ffffff\" size=\"1\"><b>GIS/LBS Jobs at<br>Careers.GeoComm.com</b></font></td></tr>";

strOut += "</font></td></tr></table><br>";


document.write(strOut);



