diff --git includes/export-ui.inc includes/export-ui.inc
index c50f713..af86566 100644
--- includes/export-ui.inc
+++ includes/export-ui.inc
@@ -32,6 +32,8 @@ function ctools_export_ui_process(&$plugin, $info) {
     'strings' => array(),
     'list' => NULL,
     'access' => 'administer site configuration',
+    'use advanced help' => FALSE,
+    'advanced help' => array(),
   );
 
   // Provide CRUD access defaults based on the base 'access' setting:
@@ -310,6 +312,7 @@ function ctools_export_ui_process(&$plugin, $info) {
     'confirmation' => array(),
     'help' => array(),
     'message' => array(),
+    'advanced help' => array(),
   );
 
   // Strings used in drupal_set_title().
@@ -364,6 +367,35 @@ function ctools_export_ui_process(&$plugin, $info) {
     'enable' => t('@plugin %title was enabled.', array('@plugin' => $plugin['title singular proper'])),
     'disable' => t('@plugin %title was disabled.', array('@plugin' => $plugin['title singular proper'])),
   );
+
+  // Strings used if advanced help module is enabled.
+
+
+  if (!empty($plugin['use advanced help'])) {
+    if (module_exists('advanced_help')) {
+      $plugin['advanced help'] += array(
+        'enabled' => TRUE,
+        'topic' => $plugin['module'],
+        'module' => $plugin['module'],
+      );
+     }
+     else {
+        $plugin['advanced help'] += array(
+          'enabled' => FALSE,
+        );
+     }
+
+     // Get the module name.
+     $info = drupal_parse_info_file(drupal_get_path('module', $plugin['module']) .'/'. $plugin['module'] .'.info');
+     $plugin['strings']['advanced help'] += array(
+       // The strings to show when the advanced help module is enabled or disabled.
+       'enabled' => t('Learn more about the @module module.', array('@module' => $info['name'])),
+       'disabled' => t('Learn more about the @module module by enabling the <a href="@path">Advanced help</a> module.', array('@module' => $info['name'], '@path' => 'http://drupal.org/project/advanced_help')),
+     );
+  }
+
+
+
 }
 
 /**
diff --git plugins/export_ui/ctools_export_ui.class.php plugins/export_ui/ctools_export_ui.class.php
index 7466fe1..4f94526 100644
--- plugins/export_ui/ctools_export_ui.class.php
+++ plugins/export_ui/ctools_export_ui.class.php
@@ -38,6 +38,25 @@ class ctools_export_ui {
     return $title;
   }
 
+  /**
+   * Add text on the top of the page.
+   */
+  function help_area($form_state) {
+      // If needed add advanced help strings.
+    $output = '';
+    if (!empty($this->plugin['use advanced help'])) {
+      $config = $this->plugin['advanced help'];
+      if ($config['enabled']) {
+        $output = theme('advanced_help_topic', $config['module'], $config['topic']);
+        $output .= '&nbsp;' . $this->plugin['strings']['advanced help']['enabled'];
+      }
+      else {
+        $output = $this->plugin['strings']['advanced help']['disabled'];
+      }
+    }
+    return $output;
+  }
+
   // ------------------------------------------------------------------------
   // Menu item manipulation
 
@@ -177,6 +196,8 @@ class ctools_export_ui {
       'object' => &$this,
     );
 
+    $help_area = $this->help_area($form_state);
+
     ctools_include('form');
     $form = ctools_build_form('ctools_export_ui_list_form', $form_state);
 
@@ -184,7 +205,7 @@ class ctools_export_ui {
 
     if (!$js) {
       $this->list_css();
-      return $form . $output;
+      return $help_area . $form . $output;
     }
 
     ctools_include('ajax');
