AppletContext ac = getAppletContext(); URL oldURL = getDocumentBase(); try { URL newURL = new URL(oldURL.getProtocol() + "://" + oldURL.getHost() + "/" + oldURL.getHost() + oldURL.getFile()); ac.showDocument(newURL); } catch (Exception e) { }