Word Search applet reads a text file. Words in the file should be in capital letters and seperated with + with no spaces all on the same line.  The applets accepts two parameters.  

param name=fileName     : value can be any filename of a text file (Tells which txt file to read)

param name=whichWords   :      value can be RANDOM or FIRST 
(Tells which words to read, the first ten or a random ten)



Example of an applet tag for Word Search applet:

<APPLET CODE="wordSearch.class" WIDTH=640 HEIGHT=400>
<param name=fileName value=words.txt>
<param name=whichWords value=RANDOM>
</APPLET>