                           ---------------------
                            The FishTank Applet
                           ---------------------


* Usage:

   There is nothing special, the FishTank applet will load the bubble
   and fish images from a directory called images located at the same level
   as the html page that calls the applet.

            --------------------------------------------------

* Optional Parameters:

   bgcolor: the background color, a string value in the form of "#RRGGBB"
            where RR, GG, BB are the RGB values in hex.
            Default: "#000000" (black)

   maxbubbles: the maximum amount of bubbles visible simultaneously, an
               int value.
               Default: "15"

   hscroll: amount of horizontal scroll, an int value
            Default: "3"

   vscroll: amount of vertical scroll, an int value
            Default: "5"

            --------------------------------------------------

* Example:

<html>
<head>
<title>FishTank Applet</title>
</head>
<body>

<applet code="FishTank.class" width=100 height=300>
<param name=bgcolor value="#0000FF">
<param name=maxbubbles value="4">
<param name=hscroll value="3">
<param name=vscroll value="5">
</applet>
</body>
</html>
