#include "version.h"
+#include "aboutdialog.h"
 
 #include "icons/filenew.xpm"
 #include "icons/fileopen.xpm"
@@ -41,7 +42,7 @@
 #include "icons/modecolor.xpm"
 #include "icons/modelink.xpm"
 #include "icons/modecopy.xpm"
-#include "icons/vym-48x48.xpm"
+//#include "icons/vym-48x48.xpm"
 #include "icons/flag-note.xpm"
 #include "icons/flag-url.xpm"
 #include "icons/flag-vymlink.xpm"	
@@ -2362,34 +2363,10 @@
 
 void Main::helpAbout()
 {
-    static QMessageBox* about = new QMessageBox( "VYM",
-			"VYM - View Your Mind 
"
-			" A tool to put the things you have got in your mind into a map.
"
-			""
-				"-  (c) by Uwe Drechsel (vym@InSilmaril.de)"
-				"
-  vym is released under the GPL (Gnu General Public License)"
-				", with one exception (see the file \"LICENSE\"which "
-				"comes with vym). This exception is needed to build vym with QT libraries for proprietary operating systems."
-				"
-  Project homepage "
-    					"http:/www.InSilmaril.de/vym"
-			"
-  Credits " 
-				""
-					"- Jakob Hilmer for image drag and drop patch "
-					"
- Thomas Schraitle for the stylesheet  used for XHTML-export "
-					"
- Clemens Kraus for stylesheets and script used for HTML-export "
-					"(www.clemens-kraus.de)"
-					"
- Alexander Johannesen for providing stylesheets from his xsiteable project " 
-					"(www.shelter.nu/xsiteable/xsiteable.html). "
-					"
- Ken Wimer and Olaf Hering for Mac support"
-				"
 "
-			"
"
-			"-  Version "  __VYM_VERSION__  ""
-				"
-  Build date "  __BUILD_DATE__""
-			"
", QMessageBox::Information, 1, 0, 0, this, 0, FALSE );
-    about->setButtonText( 1, "Dismiss" );
-    about->setMinimumSize(QSize(300,300));
-	about->setIconPixmap (QPixmap(vym_logo_xpm));
-    about->show();
+	AboutDialog ad;
+	ad.setMinimumSize(500,500);
+	ad.resize (QSize (500,500));
+	ad.exec();
 }
 
 void Main::helpAboutQT()
diff -r 40de292411b6 -r 401f76b830d1 mapeditor.cpp
--- a/mapeditor.cpp	Tue Aug 02 08:12:14 2005 +0000
+++ b/mapeditor.cpp	Mon Aug 08 16:15:57 2005 +0000
@@ -2317,13 +2317,7 @@
 
 			QProcess *proc = new QProcess( this );
 
-#if !defined(Q_OS_MACX)
-			proc->addArgument( settings.readEntry("/vym/mainwindow/readerURL","konqueror" ));
-#else			
-			proc->addArgument( settings.readEntry("/vym/mainwindow/readerURL",
-				"/Applications/Safari.app/Contents/MacOS/Safari" ));
-#endif			
-
+			proc->addArgument( settings.readEntry("/vym/mainwindow/readerURL" ));
 			proc->addArgument( url);
 
 			if ( !proc->start() ) 
diff -r 40de292411b6 -r 401f76b830d1 version.h
--- a/version.h	Tue Aug 02 08:12:14 2005 +0000
+++ b/version.h	Mon Aug 08 16:15:57 2005 +0000
@@ -2,6 +2,6 @@
 #define VERSION_H
 
 #define __VYM_VERSION__ "1.7.3"
-#define __BUILD_DATE__ "August 2, 2005"
+#define __BUILD_DATE__ "August 8, 2005"
 
 #endif
diff -r 40de292411b6 -r 401f76b830d1 vym.pro
--- a/vym.pro	Tue Aug 02 08:12:14 2005 +0000
+++ b/vym.pro	Mon Aug 08 16:15:57 2005 +0000
@@ -3,7 +3,8 @@
 
 CONFIG	+= qt warn_on release
 
-HEADERS	+= api.h \
+HEADERS	+= aboutdialog.h \
+	api.h \
 	branchobj.h \
 	exports.h \
 	findwindow.h \
@@ -31,7 +32,8 @@
 	settings.h \
 	options.h
 
-SOURCES	+= api.cpp \
+SOURCES	+= aboutdialog.cpp \
+	api.cpp \
 	branchobj.cpp \
 	exports.cpp \
 	findwindow.cpp \
@@ -68,6 +70,7 @@
 TARGET  = vym
 TRANSLATIONS += lang/vym_de.ts
 TRANSLATIONS += lang/vym_en.ts
+TRANSLATIONS += lang/vym_es.ts