// current headlines from spatialnews.com
var currDate, strOut;

/* enter news link, title below. Example:

arNews1 = new Array("http://spatialnews.geocomm.com/dailynews/2000/sep/11/news3.html","GeoSolucion becomes Space Imaging distributor");

Leave unused blank, ex: arNews15 = new Array("","");


*/
arNews1 = new Array("http://www.Forum.Nokia.com","Forum Nokia");
arNews2 = new Array("http://portals.devx.com/Nokia/Door/6213","Nokia Developer Tools from DevX");
arNews3 = new Array("http://americas.forum.nokia.com/java/default.asp","Americas Forum Nokia");
arNews4 = new Array("http://www.microjava.com/developer/tools/nokia?cid=3034","Nokia Tools from MicroJava");
arNews5 = new Array("http://americas.forum.nokia.com/newsletter/default.asp","Nokia Newsletters");
arNews6 = new Array("http://ndn.forum.nokia.com/","Nokia Knowledge Network");
arNews7 = new Array("http://nokia.handango.com","Nokia on Handango");
arNews8 = new Array("http://www.symbianpages.com/proddetails.asp?nP=693","Symbian Pages Nokia Support");
arNews9 = new Array("","");
arNews10 = new Array("","");
arNews11 = new Array("","");
arNews12 = new Array("","");
arNews13 = new Array("","");
arNews14 = new Array("","");
arNews15 = new Array("","");


strOut = "<table border=\"0\" cellpadding=\"1\" cellspacing=\"1\">";
strOut += "<tr><td align=\"left\" width=\"250\"><font face=\"verdana\" size=\"1\">";

for (var i=1;i<16;i++) {
  cNode = eval("arNews" + i);
    if (cNode[0] != "") {
      strOut += "<IMG src=\"http://www.wirelessdevnet.com/images/purplesquare_5x5.gif\" width=\"5\" height=\"5\"> <a href=\"" + cNode[0] + "\">" + cNode[1] + "</a><br>";
    }
}

strOut += "</font></td></tr></table>";

document.write(strOut);



