diff -Naur mate-utils-1.2.0/baobab/src/baobab-utils.c mate-utils-1.2.0-new//baobab/src/baobab-utils.c
--- mate-utils-1.2.0/baobab/src/baobab-utils.c	2012-03-12 13:25:56.000000000 +0200
+++ mate-utils-1.2.0-new//baobab/src/baobab-utils.c	2012-04-03 17:50:19.232000931 +0300
@@ -515,9 +515,7 @@
 	char *uri;
 	gboolean ret;
 
-	uri = (link_id) ? 
-		g_strdup_printf ("ghelp:%s#%s", file_name, link_id) :
-		g_strdup_printf ("ghelp:%s", file_name);
+	uri = g_strdup_printf ("http://mate-desktop.org/");
 
 	ret = gtk_show_uri (gtk_window_get_screen (parent),
 			    uri, gtk_get_current_event_time (), &error);
diff -Naur mate-utils-1.2.0/gsearchtool/gsearchtool-callbacks.c mate-utils-1.2.0-new//gsearchtool/gsearchtool-callbacks.c
--- mate-utils-1.2.0/gsearchtool/gsearchtool-callbacks.c	2012-03-12 13:25:56.000000000 +0200
+++ mate-utils-1.2.0-new//gsearchtool/gsearchtool-callbacks.c	2012-04-03 17:38:47.726346444 +0300
@@ -182,7 +182,7 @@
 	GtkWidget * window = data;
 	GError * error = NULL;
 
-	gtk_show_uri (gtk_widget_get_screen (widget), "ghelp:mate-search-tool",  
+	gtk_show_uri (gtk_widget_get_screen (widget), "http://mate-desktop.org/",  
 	              gtk_get_current_event_time (), &error);
 	if (error) {
 		GtkWidget * dialog;
diff -Naur mate-utils-1.2.0/logview/logview-window.c mate-utils-1.2.0-new//logview/logview-window.c
--- mate-utils-1.2.0/logview/logview-window.c	2012-03-12 13:25:55.000000000 +0200
+++ mate-utils-1.2.0-new//logview/logview-window.c	2012-04-03 17:39:00.590051794 +0300
@@ -349,7 +349,7 @@
   GError *error = NULL;
 
   gtk_show_uri (gtk_widget_get_screen (parent_window),
-                "ghelp:mate-system-log", gtk_get_current_event_time (),
+                "http://mate-desktop.org/", gtk_get_current_event_time (),
                 &error);
 
   if (error) {
diff -Naur mate-utils-1.2.0/mate-dictionary/src/gdict-applet.c mate-utils-1.2.0-new//mate-dictionary/src/gdict-applet.c
--- mate-utils-1.2.0/mate-dictionary/src/gdict-applet.c	2012-03-12 13:25:56.000000000 +0200
+++ mate-utils-1.2.0-new//mate-dictionary/src/gdict-applet.c	2012-04-03 17:42:52.419739775 +0300
@@ -733,7 +733,7 @@
   GError *err = NULL;
 
   gtk_show_uri (gtk_widget_get_screen (GTK_WIDGET (applet)),
-		"ghelp:mate-dictionary#mate-dictionary-applet",
+		"http://mate-desktop.org/",
 		gtk_get_current_event_time (), &err);
   
   if (err)
diff -Naur mate-utils-1.2.0/mate-dictionary/src/gdict-pref-dialog.c mate-utils-1.2.0-new//mate-dictionary/src/gdict-pref-dialog.c
--- mate-utils-1.2.0/mate-dictionary/src/gdict-pref-dialog.c	2012-03-12 13:25:56.000000000 +0200
+++ mate-utils-1.2.0-new//mate-dictionary/src/gdict-pref-dialog.c	2012-04-03 17:42:32.812189184 +0300
@@ -493,8 +493,8 @@
     {
     case GTK_RESPONSE_HELP:
       gtk_show_uri (gtk_widget_get_screen (GTK_WIDGET (dialog)),
-                    "ghelp:mate-dictionary#mate-dictionary-preferences",
-                    gtk_get_current_event_time (), &err);
+                    "http://mate-desktop.org/",
+		    gtk_get_current_event_time (), &err);
       if (err)
 	{
           GtkWidget *error_dialog;
diff -Naur mate-utils-1.2.0/mate-dictionary/src/gdict-source-dialog.c mate-utils-1.2.0-new//mate-dictionary/src/gdict-source-dialog.c
--- mate-utils-1.2.0/mate-dictionary/src/gdict-source-dialog.c	2012-03-12 13:25:56.000000000 +0200
+++ mate-utils-1.2.0-new//mate-dictionary/src/gdict-source-dialog.c	2012-04-03 17:43:06.515416683 +0300
@@ -471,8 +471,8 @@
       break;
     case GTK_RESPONSE_HELP:
       gtk_show_uri (gtk_widget_get_screen (GTK_WIDGET (dialog)),
-                    "ghelp:mate-dictionary#mate-dictionary-add-source",
-                    gtk_get_current_event_time (), &err);
+                    "http://mate-desktop.org/",
+		    gtk_get_current_event_time (), &err);
       if (err)
         {
           gdict_show_gerror_dialog (GTK_WINDOW (dialog),
diff -Naur mate-utils-1.2.0/mate-dictionary/src/gdict-window.c mate-utils-1.2.0-new//mate-dictionary/src/gdict-window.c
--- mate-utils-1.2.0/mate-dictionary/src/gdict-window.c	2012-03-12 13:25:56.000000000 +0200
+++ mate-utils-1.2.0-new//mate-dictionary/src/gdict-window.c	2012-04-03 17:42:20.940461276 +0300
@@ -1132,8 +1132,8 @@
   g_return_if_fail (GDICT_IS_WINDOW (window));
  
   gtk_show_uri (gtk_widget_get_screen (GTK_WIDGET (window)),
-                "ghelp:mate-dictionary",
-                gtk_get_current_event_time (), &err); 
+                "http://mate-desktop.org/",
+		gtk_get_current_event_time (), &err); 
   if (err)
     {
       gdict_show_gerror_dialog (GTK_WINDOW (window),
diff -Naur mate-utils-1.2.0/mate-screenshot/mate-screenshot.c mate-utils-1.2.0-new//mate-screenshot/mate-screenshot.c
--- mate-utils-1.2.0/mate-screenshot/mate-screenshot.c	2012-03-12 13:25:55.000000000 +0200
+++ mate-utils-1.2.0-new//mate-screenshot/mate-screenshot.c	2012-04-03 17:43:15.724205599 +0300
@@ -124,7 +124,7 @@
   GError *error = NULL;
 
   gtk_show_uri (gtk_window_get_screen (parent),
-		"ghelp:user-guide#goseditmainmenu-53",
+		"http://mate-desktop.org/",
 		gtk_get_current_event_time (), &error);
 
   if (error)
