Another source (http://forum.sun.com, Jan 2003)
says that the simplest solution
is to let the applet call it self. Add
a Button called "reloadButton" to the applet,
and register with this button an Actionlistener
with the following method:
public void actionPerformed (ActionEvent e)
{
if (e.getSource().equals(reloadButton))
getAppletContext().showDocument("applet's url here");
}
Someone else suggested directly calling the start() method
of the applet.