try{
email = new URL("mailto:"+emailAddresses);
java.applet.AppletContext ac = Parent.getAppletContext();
ac.showDocument(email,"_blank");
} catch (MalformedURLException mue){
}
However I don't know how you would achieve this in an application. What were doing here is really taking advantage of the fact that the applet is running in a browser window - the same thing is easily done with html or javascript.christo