Index: advanced_help/advanced_help.module
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/advanced_help/advanced_help.module,v
retrieving revision 1.20
diff -u -p -r1.20 advanced_help.module
--- advanced_help/advanced_help.module	30 May 2008 18:55:44 -0000	1.20
+++ advanced_help/advanced_help.module	23 Aug 2008 03:53:35 -0000
@@ -422,7 +422,7 @@ function theme_advanced_help_topic($modu
     return l($text, "help/$module/$topic", array(
       'attributes' => array(
         'class' => $class,
-        'onclick' => "window.open(this.href, 'advanced_help_window', 'width=500,height=500,scrollbars,resizable'); return false;",
+        'onclick' => "window.open(this.href, 'advanced_help_window', 'width=". $info['popup_width'] .",height=". $info['popup_height'] .",scrollbars,resizable'); return false;",
         'title' => $info['title']
       ),
       'query' => array('popup' => TRUE),
@@ -610,6 +610,8 @@ function advanced_help_get_topics() {
             'title' => !empty($translation[$name]['title']) ? $translation[$name]['title'] : $topic['title'],
             'weight' => isset($topic['weight']) ? $topic['weight'] : 0,
             'parent' => isset($topic['parent']) ? $topic['parent'] : 0,
+            'popup width' => isset($topic['popup width']) ? $topic['popup width'] : 500,
+            'popup height' => isset($topic['popup width']) ? $topic['popup width'] : 500,
             'file' => $file . '.html', // require extension
             'path' => $path, // not in .ini file
             'line break' => isset($topic['line break']) ? $topic['line break'] : (isset($settings['line break']) ? $settings['line break'] : FALSE),
Index: advanced_help/help/ini-file.html
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/advanced_help/help/ini-file.html,v
retrieving revision 1.4
diff -u -p -r1.4 ini-file.html
--- advanced_help/help/ini-file.html	10 May 2008 17:17:28 -0000	1.4
+++ advanced_help/help/ini-file.html	23 Aug 2008 06:34:44 -0000
@@ -27,6 +27,10 @@ Each section after that will correspond 
 <dd>If set to true, linebreaks will be converted into br and p tags automatically. If unspecified, will default to off. Set to 0 to disable the filter if this has been turned on in the global settings.</dd>
 <dt><strong>css</strong></dt>
 <dd>Specify a css file that will be used for this file. This .css file must reside in the help directory along with the .html files. This will override any .css file added by the global system.</dd>
+<dt><strong>popup width</strong></dt>
+<dd>The width in pixels of the popup window.  Defaults to 500 if unspecified.</dd>
+<dt><strong>popup height</strong></dt>
+<dd>The height in pixels of the popup window.  Defaults to 500 if unspecified.</dd>
 </dl>
 
 For example, here is a version of the <strong>advanced_help.help.ini</strong> file:
