Index: /trunk/src/org/openstreetmap/josm/gui/dialogs/properties/PropertiesDialog.java
===================================================================
--- /trunk/src/org/openstreetmap/josm/gui/dialogs/properties/PropertiesDialog.java	(revision 6556)
+++ /trunk/src/org/openstreetmap/josm/gui/dialogs/properties/PropertiesDialog.java	(revision 6557)
@@ -446,6 +446,7 @@
         tagTable.getActionMap().put("onTableInsert",addAction);
 
-        // unassign some standard shortcuts for JTable to allow upload / download
+        // unassign some standard shortcuts for JTable to allow upload / download / image browsing
         InputMapUtils.unassignCtrlShiftUpDown(tagTable, JComponent.WHEN_ANCESTOR_OF_FOCUSED_COMPONENT);
+        InputMapUtils.unassignPageUpDown(tagTable, JComponent.WHEN_ANCESTOR_OF_FOCUSED_COMPONENT);
 
         // unassign some standard shortcuts for correct copy-pasting, fix #8508
Index: /trunk/src/org/openstreetmap/josm/tools/InputMapUtils.java
===================================================================
--- /trunk/src/org/openstreetmap/josm/tools/InputMapUtils.java	(revision 6556)
+++ /trunk/src/org/openstreetmap/josm/tools/InputMapUtils.java	(revision 6557)
@@ -22,4 +22,15 @@
     }
     
+    /**
+     * Unassign Ctrl-Shift/Alt-Shift Up/Down from the given component
+     * to allow global JOSM shortcuts to work in this component.
+     * @param cmp The Swing component
+     * @param condition one of the following values:
+     * <ul>
+     * <li>JComponent.FOCUS_INPUTMAP_CREATED
+     * <li>JComponent.WHEN_ANCESTOR_OF_FOCUSED_COMPONENT
+     * <li>JComponent.WHEN_IN_FOCUSED_WINDOW
+     * </ul>
+     */
     public static void unassignCtrlShiftUpDown(JComponent cmp, int condition) {
         InputMap inputMap=SwingUtilities.getUIInputMap(cmp, condition);
@@ -29,4 +40,23 @@
         inputMap.remove(KeyStroke.getKeyStroke(KeyEvent.VK_DOWN,InputEvent.ALT_MASK|InputEvent.SHIFT_MASK));
         SwingUtilities.replaceUIInputMap(cmp,JComponent.WHEN_ANCESTOR_OF_FOCUSED_COMPONENT,inputMap);
+    }
+
+    /**
+     * Unassign PageUp/PageDown from the given component
+     * to allow global JOSM shortcuts to work in this component.
+     * @param cmp The Swing component
+     * @param condition one of the following values:
+     * <ul>
+     * <li>JComponent.FOCUS_INPUTMAP_CREATED
+     * <li>JComponent.WHEN_ANCESTOR_OF_FOCUSED_COMPONENT
+     * <li>JComponent.WHEN_IN_FOCUSED_WINDOW
+     * </ul>
+     * @since 6557
+     */
+    public static void unassignPageUpDown(JComponent cmp, int condition) {
+        InputMap inputMap = SwingUtilities.getUIInputMap(cmp, condition);
+        inputMap.remove(KeyStroke.getKeyStroke(KeyEvent.VK_PAGE_UP, 0));
+        inputMap.remove(KeyStroke.getKeyStroke(KeyEvent.VK_PAGE_DOWN, 0));
+        SwingUtilities.replaceUIInputMap(cmp, JComponent.WHEN_ANCESTOR_OF_FOCUSED_COMPONENT, inputMap);
     }
 
