// current headlines from spatialnews.com
var currDate, strOut;

// enter current date here 
currDate = "Dec. 05, 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://www.al.com/news/huntsville/index.ssf?/xml/story.ssf/html_standard.xsl?/base/business/99700293732723223.xml","The unfolding case of Intergraph Corp. vs. Intel Corp");
arNews2 = new Array("http://spatialnews.geocomm.com/dailynews/2001/jun/14/news1.html","Intergraph Announces 21 New Partners to the Team GeoMedia Registered Solutions Provider Program");
arNews3 = new Array("http://spatialnews.geocomm.com/dailynews/2001/jun/13/news2.html","Italian Navy Hydrographic Office Goes Operational with Its Intergraph GIS");
arNews4 = new Array("http://spatialnews.geocomm.com/dailynews/2001/jun/12/news1.html","Intergraph Public Safety to Provide State Certified Records Management System");
arNews5 = new Array("http://spatialnews.geocomm.com/dailynews/2001/jun/11/news3.html","Intergraph Responds to Recent Court of Appeals Ruling in Intergraph v. Intel Lawsuit");
arNews6 = new Array("http://spatialnews.geocomm.com/dailynews/2001/may/22/news12.html","IntelliWhere, Duke Energy, and EWTS Create Energy Technology Alliance");
arNews7 = new Array("http://spatialnews.geocomm.com/dailynews/2001/may/10/news11.html","Intergraph's GeoSpatial World 2001 Attracting Broad International Audience");
arNews8 = new Array("http://spatialnews.geocomm.com/dailynews/2001/feb/27/news14.html","City of Grand Prairie, Texas Selects ATS");
arNews9 = new Array("http://spatialnews.geocomm.com/dailynews/2001/feb/22/news14.html","Intergraph and British Columbia Ministry of Education Make Available GIS Tools for the Classroom");
arNews10 = new Array("http://spatialnews.geocomm.com/dailynews/2001/feb/22/news13.html","Intergraph's GeoMedia Deployed by City of Milpitas to Enhance GIS Initiatives");
arNews11 = new Array("http://spatialnews.geocomm.com/dailynews/2001/feb/19/news10.html","Safe Software Opens More Data to GeoMedia");
arNews12 = new Array("http://spatialnews.geocomm.com/dailynews/2001/feb/08/news4.html","Intergraph and Compaq Partner");
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>Intergraph News at The GeoCommunity<br></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);


