Our java applet needs to open a new htm page to web browser but popup blocker seem to block this code:
try
{
AppletContext a = getAppletContext();
URL url = new URL(link);
a.showDocument(url,"_blank");
}
can you use somehow live javascript to open a window instead?