This is probably too late for you, but it sounds as if you have written an application, not an applet.
While an application works by call a static void main method, an applet must extend java.applet.
The browser will then call the class's start() method when the applet is to start.
You can...