<param> Tags and Applets
The applet tag can be followed by parameters:
<param name=attributename1 value="attributevalue1" >
<param name=attributenameN value="attributevalueN" >
The Java program accesses this information by
attribute = getParameter("attributename1");
attribute = yourdefaultvalue;
// null is Java way of saying unset
Typically this processing would be in init() method of Applet