function dispenseArticles(){  var i = 0;  var arr = new Array(); var

art = new Object(); arr[i++] = art;    art.title = "<b>National/Int'l News & Events</b>";    art.page  = "http://apo-evnet.netfirms.com/events-national-intl.html";    art.date  = "14 February 2008";

art = new Object(); arr[i++] = art;    art.title = "<b>Sectional/Regn'l News & Events</b>";    art.page  = "http://apo-evnet.netfirms.com/events-sectional-regnl.html";    art.date  = "12 December 2007";

art = new Object(); arr[i++] = art;    art.title = "<b>Alumni News & Events</b>";    art.page  = "http://apo-evnet.netfirms.com/events-alumni.html";    art.date  = "30 January 2008";

art = new Object(); arr[i++] = art;    art.title = "<b>Chapter News & Events</b>";    art.page  = "http://apo-evnet.netfirms.com/events-chapter.html";    art.date  = "05 February 2008";

art = new Object(); arr[i++] = art;    art.title = "<b>Web Log</b>";    art.page  = "http://apo-evnet.blogs.friendster.com/kalahevnetan/";    art.date  = "06 February 2008";

art = new Object(); arr[i++] = art;    art.title = "<b>Job Opportunities</b>";    art.page  = "http://apo-evnet.netfirms.com/events-jobs.html";    art.date  = "15 February 2008";

art = new Object(); arr[i++] = art;    art.title = "<b>Web Forum & Message Board</b>";    art.page  = "http://pub48.bravenet.com/forum/4060676188/";    art.date  = "";

art = new Object(); arr[i++] = art;    art.title = "<b>Articles & Publications</b>";    art.page  = "http://apo-evnet.netfirms.com/resources-articles.html";    art.date  = "28 September 2007";

art = new Object(); arr[i++] = art;    art.title = "<b>Miscellaneous</b>";    art.page  = "http://apo-evnet.netfirms.com/events-miscellaneous.html";    art.date  = "14 February 2008";

art = new Object(); arr[i++] = art;    art.title = "<b>Post your News, Announcements,Etc..</b>";    art.page  = "http://apo-evnet.netfirms.com/trivia-sendarticle.html";    art.date  = "";

art = new Object(); arr[i++] = art;    art.title = "<b>TagBoard: Shout-Outs, ChatBox, Etc..</b>";    art.page  = "http://apo-evnet.netfirms.com/tagboard.html";    art.date  = "";

if (typeof showbox == "undefined") showbox = true;  if (typeof showbullets == "undefined") showbullets = true;  if (typeof showdates == "undefined") showdates = true;  if (typeof fontface == "undefined") fontface = "arial,helvetica";  if (typeof fontsize == "undefined") fontsize = "1";  if (typeof boxcolor == "undefined") boxcolor = "brown";  if (typeof boxbgcolor == "undefined") boxbgcolor = "";  if (typeof boxtextcolor == "undefined") boxtextcolor = "gold";  if (typeof boxwidth == "undefined") boxwidth = "145";  if (typeof articlecount == "undefined")    articlecount=11;     if (articlecount>arr.length)    articlecount=arr.length;   var url  = "";  var ball = url + "http://apo-evnet.netfirms.com/images/cofa-cute.jpg";  var bullet = "<td valign='center' width='18' background='http://apo-evnet.netfirms.com/images/bg.jpg'><img src='" + ball + "' width='10' height='13' hspace='2'></td>";  if (showbullets==false) bullet="";  var style = "";  if (navigator.appName.indexOf("Netscape") == -1)  {    if (typeof linkcolor != "undefined")      style += "a.dispenser {color:" + linkcolor + "}\n";    if (typeof linkunderline != "undefined")      if (linkunderline==true)         style += "a.dispenser {text-decoration:underline}\n";      else        style += "a.dispenser {text-decoration:none}\n";    if (typeof linkcolorover != "undefined")      style += "a.dispenser:hover {color:" + linkcolorover + "}\n";     if (typeof linkunderlineover != "undefined")      if (linkunderlineover==true)         style += "a.dispenser:hover {text-decoration:underline}\n";      else        style += "a.dispenser:hover {text-decoration:none}\n";    if (style != "")      style = "<style type='text/css'>\n" + style + "</style>\n";  }  var str = "<font face='" + fontface + "'>\n";  str += "<table border='0' cellpadding='1' cellspacing='1' width='" + boxwidth + "' bgcolor=''>";  for (var i=0; i<articlecount; i++)  {    str += "<tr>" + bullet + "<td valign='top' width='100%' background='http://apo-evnet.netfirms.com/images/bg.jpg'><font size='" + fontsize + "'>";    str += "<a class=dispenser href='" + url + arr[i].page + "'>" + arr[i].title + "</a><br></font>";    if (showdates)      str += "<font size='1'><em>" + arr[i].date + "</em></font>";    else      str += "<font size='1'>&nbsp;</font>";     str += "</td></tr>\n";  }  str += "</td></tr></table>";  if (showbox)     str = "<table width='" + boxwidth + "' border='0' cellspacing='0' bgcolor='" + boxcolor + "'> <tr> <td align='center' height='20'><font face='" + fontface + "' color='" + boxtextcolor + "' size='" + fontsize + "'>::<strong>aPo-EvNeT BULLETIN</strong>::</font></td> </tr> <tr> <td bgcolor='" + boxbgcolor + "' width='100%'>\n" + str +  "\n</td></tr></table>\n";  str = style + str;  document.writeln(str); }