CDPHelperSimple is a subclass which delegates errors as text messages to an applet.
CDPHelperAppSimple is an applet with no UI that we'll use to export this functionality to JavaScript.
It's used like this:
prev / next / start / index
<APPLET WIDTH=10 HEIGHT=0 <-- The height is 0 because this applet has no user interface. --> NAME=Fred <-- We'll use the name "Fred" to refer to it from JavaScript. --> CODE=camsoft.cdp.CDPHelperAppSimple <-- This is the name of the applet class. --> ARCHIVE="camsoft.jar"> <-- Netscape Navigator 4 will look for the Java classes in a JAR (Java ARchive) file. --> <PARAM NAME=ID VALUE=1234> <-- The same ID is passed to the Java applet and the Plugin so that, if there's more than one plugin on the page, the applet controls the right plugin. --> <PARAM NAME=CABBASE value="camsoft.cab"> <-- Internet Explorer 4 will look for the Java classes in a CAB (cabinet) file. --> </APPLET>