// current headlines from spatialnews.com
var strOut;

// Reset Array
for (var i=1;i<16;i++) {
  eval("arNews" + i + " = new Array(\"\",\"\");");
}

// News links: Array(url, title)

arNews1 = new Array("http://geobids.geocomm.com/rfp/","Wetland Inventories-OR");

arNews2 = new Array("http://geobids.geocomm.com/rfp/","Photogrammetric Mapping-MO");

arNews3 = new Array("http://geobids.geocomm.com/rfp/","Thermal Graphic Recorder-Canada");

arNews4 = new Array("http://geobids.geocomm.com/rfp/","Surveying Services*Written in Polish");

arNews5 = new Array("http://geobids.geocomm.com/rfp/","Geolocation Hardware-CA");


strOut = "<table border=\"0\" cellpadding=\"1\" cellspacing=\"1\">";
strOut += "<tr><td bgcolor=\"#CCCCCC\" align=\"center\"><font face=\"verdana\" size=\"2\"><b>Recent GeoBids</b></font></td></tr>";
strOut += "<tr><td align=\"left\"><font face=\"verdana\" size=\"1\"><b>";

for (var i=1;i<16;i++) {
  cNode = eval("arNews" + i);
    if (cNode[0] != "") {
      strOut += "<IMG src=\"http://images.geocomm.com/images/square_668099.gif\" width=\"5\" height=\"5\"> <a href=\"" + cNode[0] + "\">" + cNode[1] + "</a><br>";
    }
}

strOut += "</font></td></tr></table>";

document.write(strOut);

