
// writes technote table to the page  
function buildTechnoteTable (data) {
  document.write('by category | <A HREF="index.html?sort=date">by date</A><BR><BR>');

  var table = '<TABLE BORDER="0" CELLPADDING=0 cellspacing=0>'

  for (var i = 0; i < data.length; i++) {
    if (data[i].constructor == TechNoteCategory) {

	  table += '<TR><TD colspan=2><FONT COLOR="#5d9191"><b>'
	    + data[i].name + '</b></FONT></TD></TR>';
		
	} else if (data[i].constructor == TechNote) {
      table += '<TR><TD valign="top">'
            +  '<img src="../images/bullet-star.gif" width="12" height="12" alt="*" border="0">'
            +  '</TD><TD valign="top"><a href="'
            +  data[i].folder + '">' + data[i].name + '</a></TD></TR>';
	}
  }
  table += '</table>';
  document.write(table);
}


