silly me :/ thanks a lot though

- If I can add another question

I'm trying to upload my work and have set an applet tag containing all the necessary tags following the tutorial at ninjacave
http://ninjacave.com/appletloader1. Yet I am given an error "An error occured while loading the applet ... This occured while 'switching applet'". What I am suspecting is that the applet loader is not finding the package that contains the main class of the game.
I have built my game in netbeans and copied the following folder: "build\classes" from the netbeans project folder and pasted it into the folder containing all the other jars the applet loader is using. Then I'm writing this in the the html file displaying the applet:
<applet ...>
<param name="al_main" value="classes.framework.CentralControl">
</applet>
Is this the correct way of doing things?