Index: trunk/BNC/src/map/bncmapwin.cpp
===================================================================
--- trunk/BNC/src/map/bncmapwin.cpp	(revision 5165)
+++ trunk/BNC/src/map/bncmapwin.cpp	(revision 5166)
@@ -50,5 +50,7 @@
 
   _webView = new QWebView(this);
-  _webView->load(QUrl("http://igs.bkg.bund.de/ntrip/ppp#Scene6"));
+  ///  _webView->load(QUrl("http://igs.bkg.bund.de/ntrip/ppp#Scene6"));
+  loadHtmlPage();
+
   _webView->show();  
 
@@ -66,2 +68,17 @@
 }
 
+// 
+////////////////////////////////////////////////////////////////////////////
+void bncMapWin::loadHtmlPage() {
+
+  QFile htmlFile(":/map/html/index.html");
+  if (!htmlFile.open(QFile::ReadOnly)) {
+    return;
+  }
+
+  QTextStream stream(&htmlFile);
+  QString html = stream.readAll();
+
+  _webView->setHtml(html);
+}
+
Index: trunk/BNC/src/map/bncmapwin.h
===================================================================
--- trunk/BNC/src/map/bncmapwin.h	(revision 5165)
+++ trunk/BNC/src/map/bncmapwin.h	(revision 5166)
@@ -41,4 +41,5 @@
 
  private:
+  void loadHtmlPage();
   QWebView* _webView;
 };
Index: trunk/BNC/src/map/html/index.html
===================================================================
--- trunk/BNC/src/map/html/index.html	(revision 5165)
+++ trunk/BNC/src/map/html/index.html	(revision 5166)
@@ -11,6 +11,6 @@
     </style>
 
-    <script type="text/javascript" src="qrc:///html/init.js"></script>
-    <script type="text/javascript" src="qrc:///html/tools.js"></script>
+    <script type="text/javascript" src="qrc:///map/html/init.js"></script>
+    <script type="text/javascript" src="qrc:///map/html/tools.js"></script>
 
     <script type="text/javascript"
