--- loncom/interface/loncreatecourse.pm	2006/08/11 22:00:08	1.96
+++ loncom/interface/loncreatecourse.pm	2006/08/19 01:21:22	1.97
@@ -1,7 +1,7 @@
 # The LearningOnline Network
 # Create a course
 #
-# $Id: loncreatecourse.pm,v 1.96 2006/08/11 22:00:08 albertel Exp $
+# $Id: loncreatecourse.pm,v 1.97 2006/08/19 01:21:22 raeburn Exp $
 #
 # Copyright Michigan State University Board of Trustees
 #
@@ -719,14 +719,18 @@ sub print_intro_page {
                      name => &mt('Create courses/groups by uploading an attributes file'),
                      short_description =>
     &mt('Upload an attributes file containing specifications for one or more courses or groups in XML format'),
+                     help => 'Batch_Creation',
                  },
     );
     my $options;
     foreach my $choice (@choices) {
         $options .='    <h3><a href="/adm/createcourse?phase='.
             $choice->{'internal_name'}.'" >'.
-            $choice->{'name'}."</a></h3>\n";
-        $options .= '    '.('&nbsp;'x8).$choice->{'short_description'}.
+            $choice->{'name'}.'</a>';
+        if (exists($choice->{'help'})) {
+            $options .= &Apache::loncommon::help_open_topic($choice->{'help'});
+        }
+        $options .= "</h3>\n".'    '.('&nbsp;'x8).$choice->{'short_description'}.
             "\n";
     }