Thanks for the help.
The structure is as follows:
I am using a server
www.computingscotland.org although I don't have root access to the server.
Check it out its a lovely site to encourage kids to study Computer Science.
In the folder '/' which is the top level area I have access too i.e. the area where all the files are stored is a page .php file in which the JApplet is embeded.(address
http://www.computingscotland.org/hangcipher.php) It has been embeded as follows:
<!--[if !IE]>-->
<object classid="java:hang_cipher.Applet_Control.class"
type="application/x-java-applet"
archive="/Applet/hang_cipher.jar"
height="800" width="710" >
<!-- Konqueror browser needs the following param -->
<param name="archive" value="/Applet/hang_cipher.jar"/>
<!--<![endif]-->
<object classid="clsid:8AD9C840-044E-11D1-B3E9-00805F499D93"
height="800" width="710" >
<param name="code" value="hang_cipher.Applet_Control" />
<param name="archive" value="/Applet/hang_cipher.jar"/>
</object>
<!--[if !IE]>-->
</object>
<!--<![endif]-->
The jar file containing the code is here
http://www.computingscotland.org/Applet/hang_cipher.jar Inside the jar file is a package called hang_cipher and inside this package is Applet_Control which extends JApplet
I have not used any 3rd party packages but have made use of swing, io ect. which java has provided.
Hope I can get this working.....