You need to place your javax.media.xxx library's class files or jar file onto the web server's Virtual Directory.  It needs to be placed at the proper path according to its package name.Suppose you place your applet at c:\INetpub\wwwroot\applet as your applet does not have a declared package.  You need to create a directory:
c:\INetpub\wwwroot\applet\javax\media\xxx.  And then copy all the class files to this directory.  This is the easy way.  If it is a jar or zip file, you can use Winzip to unzip all the class files in the jar to this directory.If you want to stick with jar file, you need to edit the HTML page for the applet to include the jar file as one of the archives for Applet tag.I would suggest to use Winzip to unzip all the files for starter.  If you get that working, then try the jar approach.