function dispenseArticles(){  var i = 0;  var arr = new Array(); var 

art = new Object(); arr[i++] = art;    art.title = "LC 56th Foundation Day Celebration...";    art.page  = "issue002.html";    art.date  = "Leyte Colleges";

art = new Object(); arr[i++] = art;    art.title = "The Making Of The LC Alumni WebSite";    art.page  = "issue001.html";    art.date  = "By RBS";

art = new Object(); arr[i++] = art;    art.title = "Send Your Article";    art.page  = "emailform.html";    art.date  = "LC Alumni, Faculty, Students...";

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 = "#DEB887";  if (typeof boxbgcolor == "undefined") boxbgcolor = "#ffffff";  if (typeof boxtextcolor == "undefined") boxtextcolor = "#ffffff";  if (typeof boxwidth == "undefined") boxwidth = "130";  if (typeof articlecount == "undefined")    articlecount=5;     if (articlecount>arr.length)    articlecount=arr.length;   var url  = "http://lc-alumni.netfirms.com/";  var ball = url + "images/ball.gif";  var bullet = "<td valign='baseline' width='18'><img src='" + ball + "' width='8' height='10' hspace='3'></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='0' cellspacing='1' width='" + boxwidth + "'>";  for (var i=0; i<articlecount; i++)  {    str += "<tr>" + bullet + "<td valign='top' width='100%'><font size='" + fontsize + "'>";    str += "<a class=dispenser href='" + url + arr[i].page + "' target=_top>" + 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='1' bgcolor='" + boxcolor + "'> <tr> <td align='center'><font face='" + fontface + "' color='000000" + boxtextcolor + "' size='" + fontsize + "'><strong>Site News &amp; Articles</strong></font></td> </tr> <tr> <td bgcolor='" + boxbgcolor + "' width='100%'>\n" + str + "\n</td></tr></table>\n";  str = style + str;  document.writeln(str); }