Index: trunk/webapps/common/js/displayutils.js
===================================================================
--- trunk/webapps/common/js/displayutils.js	(revision 643)
+++ trunk/webapps/common/js/displayutils.js	(revision 650)
@@ -30,4 +30,5 @@
 }
 
+// Format the csv data into an HTML table
 function formatTable(allRows, sortOrder)
 {
@@ -35,5 +36,4 @@
     if (sortOrder) // ascending order of time (most recent last)
     {
-        // Format the csv data into an HTML table
         // Put the last log entry at the BOTTOM of the table
         for (var singleRow = 0; singleRow <= allRows.length-1; singleRow++)
@@ -46,5 +46,4 @@
     else  // descending order of time (most recent first)
     {
-        // Format the csv data into an HTML table
         // Put the last log entry at the TOP of the table
         for (var singleRow = allRows.length-1; singleRow >= 0; singleRow--)
@@ -60,4 +59,5 @@
 }
 
+// Format a single row of fields into a table row
 function formatRow(rowCells)
 {
