// current headlines from spatialnews.com
var currDate, strOut;

// enter current date here 
currDate = "Jan 16, 2001";

/* enter news link, title below. Example:

arNews1 = new Array("http://spatialnews.geocomm.com/dailynews/2001/feb/06/news11.html","GeoSolucion becomes Space Imaging distributor");

Leave unused blank, ex: arNews15 = new Array("","");

*/
arNews1 = new Array("http://spatialnews.geocomm.com/dailynews/2003/mar/25/news1.html","Fastrax Signs Distributor and Sales Representative Agreement");
arNews2 = new Array("http://spatialnews.geocomm.com/dailynews/2003/mar/24/news7.html","Magellan GPS Companion for Palm m500");
arNews3 = new Array("http://spatialnews.geocomm.com/dailynews/2003/mar/21/news1.html","Bill Gates Outlines Vital Role of Developers");
arNews4 = new Array("http://spatialnews.geocomm.com/dailynews/2003/mar/21/news3.html","Autodesk Location Services Teams Up with Leading Telecom Supplier");
arNews5 = new Array("http://spatialnews.geocomm.com/dailynews/2003/mar/21/news4.html","MasterCard and MapInfo Offer First Wireless ATM");
arNews6 = new Array("http://spatialnews.geocomm.com/dailynews/2003/mar/21/news7.html","Rand McNally Launches Next-Generation Mapping Solution For Wireless Phones");
arNews7 = new Array("http://spatialnews.geocomm.com/dailynews/2003/mar/20/news1.html","Microsoft MapPoint Web Service Gains Traction With Mobile Developers ");
arNews8 = new Array("http://spatialnews.geocomm.com/dailynews/2003/mar/20/news5.html","Brother Hands IT Developers and Systems Integrators Key Component");
arNews9 = new Array("http://spatialnews.geocomm.com/dailynews/2003/mar/19/news9.html","New GPS-based Orientation Tool for the Blind");
arNews10 = new Array("http://spatialnews.geocomm.com/dailynews/2003/mar/18/news9.html","LocatioNet and Dejima Partner");
arNews11 = new Array("http://spatialnews.geocomm.com/dailynews/2003/mar/17/news6.html","Symbol Technologies selects Ekahau for indoor positioning ");
arNews12 = new Array("","");
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>LBS/Wireless 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);


