Index: /applications/editors/josm/plugins/openstreetbugs/src/org/openstreetmap/josm/plugins/osb/gui/action/OpenInBrowserAction.java
===================================================================
--- /applications/editors/josm/plugins/openstreetbugs/src/org/openstreetmap/josm/plugins/osb/gui/action/OpenInBrowserAction.java	(revision 26109)
+++ /applications/editors/josm/plugins/openstreetbugs/src/org/openstreetmap/josm/plugins/osb/gui/action/OpenInBrowserAction.java	(revision 26109)
@@ -0,0 +1,79 @@
+/* Copyright (c), Henrik Niehaus
+ * All rights reserved.
+ *
+ * Redistribution and use in source and binary forms, with or without
+ * modification, are permitted provided that the following conditions are met:
+ *
+ * 1. Redistributions of source code must retain the above copyright notice,
+ *    this list of conditions and the following disclaimer.
+ * 2. Redistributions in binary form must reproduce the above copyright notice,
+ *    this list of conditions and the following disclaimer in the documentation
+ *    and/or other materials provided with the distribution.
+ * 3. Neither the name of the project nor the names of its
+ *    contributors may be used to endorse or promote products derived from this
+ *    software without specific prior written permission.
+ *
+ * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
+ * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
+ * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
+ * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
+ * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
+ * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
+ * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
+ * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
+ * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
+ * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
+ * POSSIBILITY OF SUCH DAMAGE.
+ */
+package org.openstreetmap.josm.plugins.osb.gui.action;
+
+import static org.openstreetmap.josm.tools.I18n.tr;
+
+import java.awt.event.ActionEvent;
+import java.io.IOException;
+
+import javax.swing.JOptionPane;
+
+import org.openstreetmap.josm.Main;
+import org.openstreetmap.josm.data.osm.Node;
+import org.openstreetmap.josm.plugins.osb.gui.OsbDialog;
+import org.openstreetmap.josm.tools.OpenBrowser;
+
+public class OpenInBrowserAction extends OsbAction {
+
+    private static final long serialVersionUID = 1L;
+
+    private Node node;
+
+    public OpenInBrowserAction(OsbDialog dialog) {
+        super(tr("Open in browser"), dialog);
+    }
+
+    @Override
+    protected void doActionPerformed(ActionEvent e) throws Exception {
+        node = dialog.getSelectedNode();
+        if(node != null) {
+            String uri = "http://openstreetbugs.schokokeks.org/?lon="+node.getCoor().getX()+"&lat="+node.getCoor().getY()+"&zoom=16&layers=B00T";
+            System.out.println("Opening URI " + uri);
+            OpenBrowser.displayUrl(uri);
+        } else {
+            JOptionPane.showMessageDialog(Main.parent, tr("No item selected"), tr("Error"), JOptionPane.ERROR_MESSAGE);
+        }
+    }
+
+    @Override
+    public void execute() throws IOException {
+    }
+
+    @Override
+    public String toString() {
+        return tr("Open in browser: " + node.get("note"));
+    }
+
+    @Override
+    public OpenInBrowserAction clone() {
+        OpenInBrowserAction action = new OpenInBrowserAction(dialog);
+        action.node = node;
+        return action;
+    }
+}
Index: /applications/editors/josm/plugins/openstreetbugs/src/org/openstreetmap/josm/plugins/osb/gui/action/PopupFactory.java
===================================================================
--- /applications/editors/josm/plugins/openstreetbugs/src/org/openstreetmap/josm/plugins/osb/gui/action/PopupFactory.java	(revision 26108)
+++ /applications/editors/josm/plugins/openstreetbugs/src/org/openstreetmap/josm/plugins/osb/gui/action/PopupFactory.java	(revision 26109)
@@ -63,4 +63,8 @@
             close.setIcon(OsbPlugin.loadIcon("icon_valid16.png"));
             issuePopup.add(close);
+            JMenuItem openInBrowser = new JMenuItem();
+            openInBrowser.setAction(new OpenInBrowserAction(dialog));
+            openInBrowser.setIcon(OsbPlugin.loadIcon("internet-web-browser.png"));
+            issuePopup.add(openInBrowser);
         }
         return issuePopup;
@@ -75,4 +79,5 @@
             add.setAction(aca);
             add.setIcon(OsbPlugin.loadIcon("add_comment16.png"));
+            fixedPopup.add(add);
             JMenuItem close = new JMenuItem();
             CloseIssueAction cia = new CloseIssueAction(dialog);
@@ -80,6 +85,9 @@
             close.setAction(cia);
             close.setIcon(OsbPlugin.loadIcon("icon_valid16.png"));
-            fixedPopup.add(add);
             fixedPopup.add(close);
+            JMenuItem openInBrowser = new JMenuItem();
+            openInBrowser.setAction(new OpenInBrowserAction(dialog));
+            openInBrowser.setIcon(OsbPlugin.loadIcon("internet-web-browser.png"));
+            fixedPopup.add(openInBrowser);
         }
         return fixedPopup;
