** "sweeper" java-applet **

Description:

The applet show you a textmessage that  you define, and the next text that you
have defined "sweeps" over the former one, and the next one and so on. 
You can define shadow color, foreground color, the seep "size",font size, 
font and smoothness.

Configuration:

* "background" (hexadecimal value) Background color.
* "foreground" (hexadecimal value) Foreground color.
* "font" (TimesRoman, Helvetica, etc.) Font type.
* "fontsize" (integer number) Size of the font.
* "shadow" (hexadecimal value) Color of the shadow.
* "bold" (value "yes", or "no") Bold or not.
* "italic" (value "yes", or "no") Italic or not.
* "displace" (integer number) Placement of the shadow.
* "step" (integer number) Smoothness of the sweep, lower=nicer but slower, higher=uglier but faster.
* "delay" (integer number) Frame delay.
* "sleeptime" (integer number) Message delay.
* "length" (integer number) Length of the sweeping 'barrier'.
* "textxx" (texts) The text lines.
* "urlxx" (texts) The urls for each message.
* "target" (text) The target frame window.


Here is a sample HTML-configuration:

<applet CODE="sweeper.class" WIDTH="425" HEIGHT="50">
  <param name="font" value="Helvetica">
  <param name="fontsize" value="30">
  <param name="background" value="000000">
  <param name="foreground" value="ffcc66">
  <param name="shadow" value="990000">
  <param name="italic" value="yes">
  <param name="bold" value="yes">
  <param name="displace" value="3">
  <param name="delay" value="100">
  <param name="sleeptime" value="2000">
  <param name="text0" value="This is a Sweeper message">
  <param name="text1" value="Configure the TeXT">
  <param name="text2" value="Font type, color and size">
  <param name="text3" value="Assign a link to...">
  <param name="text4" value="any text string">
  <param name="text5" value="Presented by...">
  <param name="text6" value="javapowered.com">
  <param name="url0" value="http://www.whatever.com/">
  <param name="url1" value="http://www.whatever.com/">
  <param name="url2" value="http://www.whatever.com/">
  <param name="url3" value="http://www.whatever.com/">
  <param name="url4" value="http://www.whatever.com/">
  <param name="url5" value="http://www.whatever.com/">
  <param name="url6" value="http://www.whatever.com/">
  <param name="step" value="15">
  <param name="target" value="_self">
</applet>