--- loncom/interface/lonstatistics.pm	2003/06/10 18:22:17	1.75
+++ loncom/interface/lonstatistics.pm	2003/06/10 19:19:57	1.76
@@ -1,6 +1,6 @@
 # The LearningOnline Network with CAPA
 #
-# $Id: lonstatistics.pm,v 1.75 2003/06/10 18:22:17 matthew Exp $
+# $Id: lonstatistics.pm,v 1.76 2003/06/10 19:19:57 matthew Exp $
 #
 # Copyright Michigan State University Board of Trustees
 #
@@ -805,6 +805,8 @@ sub DisplayClasslist {
     my @Fields = ('fullname','username','domain','id','section');
     #
     my $Str='';
+    # "Click" is asinine but it is probably not my place to change the world.
+    $Str .= '<h2>Click on a users name to view their chart</h2>';
     $Str .= '<table border="0"><tr><td bgcolor="#777777">'."\n";
     $Str .= '<table border="0" cellpadding="3"><tr bgcolor="#e6ffff">'."\n";
     foreach my $field (@Fields) {
@@ -856,18 +858,10 @@ sub CreateMainMenu {
     my $Str = '';
     #
     $Str .= '<table border="0"><tbody><tr>'."\n";
-    $Str .= '<td></td>'."\n";
-    $Str .= '<td align="center"><b>Select a Report</b></td>'."\n";
-    $Str .= '<td></td>'."\n";
-    $Str .= '<td></td>'."\n";
-    $Str .= '<tr>'."\n";
-    #
-    $Str .= '<td align="center">'.
-        '<input type="submit" name="Refresh" value="Update Display" />'.
-            "</td>\n";
-    #
+    $Str .= '<td align="center"><b>Report:</b></td>'."\n";
     $Str .= '<td align="center">';
-    $Str .= '<select name="reportSelected" >'."\n";
+    $Str .= '<select name="reportSelected" '.
+        'onchange="document.Statistics.submit()">'."\n";
     foreach (sort(keys(%$reports))) {
         $Str .= '<option value="'.$_.'"';
         if($current eq $_) {