Index: trunk/BNC/src/map/bncmapwin.cpp
===================================================================
--- trunk/BNC/src/map/bncmapwin.cpp	(revision 5316)
+++ trunk/BNC/src/map/bncmapwin.cpp	(revision 5321)
@@ -58,4 +58,7 @@
   _webView = new QWebView(this);
   connect(_webView, SIGNAL(loadFinished(bool)), this, SLOT(slotInitMap(bool)));
+
+  MyWebPage* webPage = new MyWebPage();
+  _webView->setPage(webPage);
 
   // Proxy Settings
Index: trunk/BNC/src/map/bncmapwin.h
===================================================================
--- trunk/BNC/src/map/bncmapwin.h	(revision 5316)
+++ trunk/BNC/src/map/bncmapwin.h	(revision 5321)
@@ -58,3 +58,11 @@
 };
 
+class MyWebPage : public QWebPage {
+ Q_OBJECT
+ protected:
+  virtual QString userAgentForUrl(const QUrl &url) const {
+    return QString::fromUtf8("Mozilla/5.0 (Windows NT 6.1; WOW64; rv:2.0b8) Gecko/20100101 Firefox/4.0b8");
+  }
+};
+
 #endif
