diff -Naur agave-0.4.4-old/data/ui/agave.ui agave-0.4.4/data/ui/agave.ui
--- agave-0.4.4-old/data/ui/agave.ui	2007-11-02 05:01:16.000000000 +0200
+++ agave-0.4.4/data/ui/agave.ui	2009-07-29 17:55:13.472192734 +0300
@@ -32,7 +32,6 @@
             <menuitem action='ClearBookmarks'/>
         </menu>
         <menu action='MenuHelp'>
-            <menuitem action='Contents'/>
             <menuitem action='About'/>
         </menu>
     </menubar>
diff -Naur agave-0.4.4-old/src/gcs-mainwindow-actions.cc agave-0.4.4/src/gcs-mainwindow-actions.cc
--- agave-0.4.4-old/src/gcs-mainwindow-actions.cc	2007-11-02 05:01:16.000000000 +0200
+++ agave-0.4.4/src/gcs-mainwindow-actions.cc	2009-07-29 17:54:55.593591285 +0300
@@ -112,9 +112,6 @@
 
         /* The Help menu */
         m_refActionGroup->add(Gtk::Action::create("MenuHelp", _("_Help")));
-        m_refActionGroup->add(Gtk::Action::create("Contents", Gtk::Stock::HELP, _("_Contents"), _("Open the Agave manual")),
-                Gtk::AccelKey("F1"),
-                sigc::mem_fun(*this, &MainWindow::on_action_help_contents));   
         // Gtk::Stock::About requires gtkmm 2.6
         m_refActionGroup->add(Gtk::Action::create("About", Gtk::Stock::ABOUT),
                 sigc::mem_fun(*this, &MainWindow::on_action_help_about));
@@ -249,14 +246,6 @@
 
 
     /* Help Menu Actions */
-    void MainWindow::on_action_help_contents(void)
-    {
-        gnome_help_display("agave.xml",
-                NULL /* link id */,
-                NULL /* GError */);
-    }
-
-
     void MainWindow::on_action_help_about(void)
     {
         m_pAbout->show();
diff -Naur agave-0.4.4-old/src/gcs-mainwindow.h agave-0.4.4/src/gcs-mainwindow.h
--- agave-0.4.4-old/src/gcs-mainwindow.h	2007-11-02 05:01:16.000000000 +0200
+++ agave-0.4.4/src/gcs-mainwindow.h	2009-07-29 17:54:55.594592030 +0300
@@ -97,7 +97,6 @@
             void on_action_edit_prefs(void);
 
             /* Help Menu Actions */
-            void on_action_help_contents(void);
             void on_action_help_about(void);
 
             /* other actions */