Index: trunk/src/org/openstreetmap/josm/tools/BugReportExceptionHandler.java
===================================================================
--- trunk/src/org/openstreetmap/josm/tools/BugReportExceptionHandler.java	(revision 5826)
+++ trunk/src/org/openstreetmap/josm/tools/BugReportExceptionHandler.java	(revision 5827)
@@ -6,8 +6,10 @@
 import java.awt.Component;
 import java.awt.GridBagLayout;
+import java.io.ByteArrayOutputStream;
 import java.io.PrintWriter;
 import java.io.StringWriter;
 import java.net.URL;
 import java.nio.ByteBuffer;
+import java.util.zip.GZIPOutputStream;
 
 import javax.swing.JCheckBox;
@@ -118,7 +120,12 @@
                                 urltext += "...<snip>...\n";
                             }
+                            
+                            ByteArrayOutputStream out = new ByteArrayOutputStream();
+                            GZIPOutputStream gzip = new GZIPOutputStream(out);
+                            gzip.write(urltext.getBytes("UTF-8"));
+                            gzip.close();
 
                             URL url = new URL("http://josm.openstreetmap.de/josmticket?" +
-                                    "tdata="+Base64.encode(ByteBuffer.wrap(urltext.getBytes("UTF8")), true));
+                                    "gdata="+Base64.encode(ByteBuffer.wrap(out.toByteArray()), true));
 
                             JPanel p = new JPanel(new GridBagLayout());
@@ -126,5 +133,5 @@
                                     tr("You have encountered an error in JOSM. Before you file a bug report " +
                                             "make sure you have updated to the latest version of JOSM here:")), GBC.eol());
-                            p.add(new UrlLabel("http://josm.openstreetmap.de/#Download",2), GBC.eop().insets(8,0,0,0));
+                            p.add(new UrlLabel("http://josm.openstreetmap.de",2), GBC.eop().insets(8,0,0,0));
                             p.add(new JMultilineLabel(
                                     tr("You should also update your plugins. If neither of those help please " +
