Switch to side-by-side view

--- a/tool/run/plugins/spdx/show.java
+++ b/tool/run/plugins/spdx/show.java
@@ -87,19 +87,22 @@
         String summary = 
                 "<h2>"
                 //+ html.getCommonFolderIcon("wooden-box-label.png")
-                + "SPDX documents"
+                + "SPDX summary"
                 + "</h2>"
                 + html._div
                 + html.div(20)
                 //+ html.getCommonFolderIcon("documents-stack.png")
-                + core.products.size() + " SPDX documents containing "
+                + core.products.size() + " documents"
+                + html.br
+                //+ " containing "
+                //+ html.getCommonFolderIcon("calculator.png")
+                + counterLicensesDeclared + " files with declared licenses" 
+                + html.br
                 + counterFiles + " files in total" 
                 + html.br
-                //+ html.getCommonFolderIcon("calculator.png")
-                + counterLicensesDeclared + " files with declared licenses" 
                 //+ percentage
                 //+ html.getCommonFolderIcon("stickman.png")
-                + counterCreators + " SPDX creators" + html.br
+                + counterCreators + " reviewers" + html.br
                 + html.br
                 ;
         
@@ -113,13 +116,14 @@
         String[] header = new String[]{summary, 
               html.br
             + html.getIcon("chart.png", request)};
-        values = new int[]{270, 200};
+        values = new int[]{270, 180};
         
         summary = Table.alignedTable(header, values);
         
         String result = 
                 html.div(20)
                 + summary
+                + html.h2("List of documents")
                 + listFilesSPDX(request)
                 //+ html.br
                 + html._div