<APPLET CODE="JavaJump.class" WIDTH=250 HEIGHT=32>
<PARAM NAME="bgcolor" VALUE="red,green,blue">
Here, red, green, and blue are numbers between 0 and 255.
<PARAM NAME="pages" VALUE="total">
<PARAM NAME="urlx" VALUE="Name;URL">
Here, x is the item number ("url1", "url2", etc.), Name is the name that appears in the list, and URL is the URL of the page.
Here's the code used in the example applet shown above:
<APPLET CODE="JavaJump.class" WIDTH=250 HEIGHT=32> <PARAM NAME="bgcolor" VALUE="0,0,0"> <PARAM NAME="pages" VALUE="3"> <PARAM NAME="url1" VALUE="CIG to Creating a Web Page;http://www.mcfedries.com/books/cightml"> <PARAM NAME="url2" VALUE="Paul McFedries' Web Home;http://www.mcfedries.com/"> <PARAM NAME="url3" VALUE="Gamelan (Java Applets);http://www.gamelan.com/"> </APPLET>