// current headlines from spatialnews.com
var currDate, strOut;

// enter current date here 
currDate = "October 22, 2002";

/* 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/nov/06/news1.html","Navman and Tele Atlas team up");
arNews2 = new Array("http://spatialnews.geocomm.com/dailynews/2001/nov/06/maptech.html","Maptech Adds Hi-Tech GPS Sleeve for Pocket Navigator");
arNews3 = new Array("http://spatialnews.geocomm.com/dailynews/2001/nov/14/news8.html","WHERIFY WIRELESS SELECTS INTRADO");
arNews4 = new Array("http://spatialnews.geocomm.com/dailynews/2001/nov/13/news7.html","LEICA GEOSYSTEMS INTRODUCES NEW TPS700 PERFORMANCE");
arNews5 = new Array("http://spatialnews.geocomm.com/dailynews/2001/nov/09/news7.html","Lowrance Electronics Introduces Eleven New Products");
arNews6 = new Array("http://spatialnews.geocomm.com/dailynews/2001/nov/01/news9.html","Trimble GPS Helps Respond to Forest Fires in Portugal");
arNews7 = new Array("http://spatialnews.geocomm.com/dailynews/2001/oct/31/news1.html","LEICA GEOSYSTEMS PRESENTS 10,000TH DIGITAL LEVEL");
arNews8 = new Array("http://spatialnews.geocomm.com/dailynews/2001/oct/05/news8.html","Pharos GPS Navigator for Pocket PC");
arNews9 = new Array("http://spatialnews.geocomm.com/dailynews/2001/oct/05/news11.html","GPS Worldwide Announces GPS Tracking Technology Hotline");
arNews10 = new Array("http://spatialnews.geocomm.com/dailynews/2001/oct/04/news8.html","CompactGPS for Pocket PC");
arNews11 = new Array("http://www.wirelessdevnet.com/newswire-less/sep182001.html","CellPoint Solution Means E911 Delays Unnecessary");
arNews12 = new Array("http://spatialnews.geocomm.com/dailynews/2001/sep/20/news3.html","Digital Angel Corp. Offers its Proprietary GPS Tracking");
arNews13 = new Array("http://spatialnews.geocomm.com/dailynews/2001/sep/20/news7.html","Trimble Awarded Contract From Japanese GSI");
arNews14 = new Array("","");
arNews15 = new Array("","");

strOut = "<table border=\"0\" cellpadding=\"1\" cellspacing=\"1\">";
strOut += "<tr><td bgcolor=\"#336699\" align=\"center\"><font face=\"verdana\" color=\"#ffffff\" size=\"1\"><b>GPS News Headlines</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 += "<IMG src=\"http://images.geocomm.com/images/square/square5x5_blue.jpg\" width=\"5\" height=\"5\"> <a href=\"" + cNode[0] + "\" target=\"_blank\">" + cNode[1] + "</a><br><br>";
  }
} 
strOut += "<tr><td bgcolor=\"#336699\" 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><br>";


document.write(strOut);


