!!THIS APPLET IS COMPLETELY FREE OF CHARGE AND WITHOUT LIABILITY OF ANY SORT!!

RWBMarquee is a Java2 SDK 1.4.2_08 applet that rolls, blinks and scrolls a text message in a web page.
Your web browser needs to have built-in support for Java2 technology or be set to use j2re1.4.1_01 or higher Run Time Environment for the applet to work.
 
The marquee applet has 12 parameters that could be set to fit in your web page.  You have to include all parameters in your HTML code for the
applet to work.  However, you can assign an empty value ("") to any parameter if you want to.  If any/all parameters is/are
assigned empty value(s), the program uses preset default ones.

The applet parameters are as follows:

width		w/all small letters sets the width of the applet within the web page (default value "675")
height		w/all small letters sets the height of the applet within the web page (default value "57")
RollDelay	w/capital R and D sets the roll delay in milliseconds (corresponds to roll speed) (default value "50")
BlinkDelay	w/capital B and D sets the blink delay in milliseconds (corresponds to blink speed) (default value "800")
ScrollDelay	w/capital S and D sets the scroll delay in milliseconds (corresponds to scroll speed) (default value "4")
Font		w/capital F sets the name of the font to be used (make sure to use a valid font name) (default value "Times New Roman")
FontSize	w/capital F and S sets the font size (Times New Roman) (default value "24")
FontStyle	w/capital F and S sets the font style ("0" for PLAIN "1" for BOLD "2" for ITALIC "3" for BOLD & ITALIC) (default value "0")
Message		w/capital M sets the marquee text to be displayed (default value "Programmer Naser El-Sharabasy Java2 SDK 1.4.2_08")
Roll		w/capital R sets the selection for the roll feature (only "true" w/all small letters activates it) (default value "false")
Blink		w/capital B sets the selection for the blink feature (only "true" w/all small letters activates it) (default value "false")
Scroll		w/capital S sets the selection for the scroll feature (only "true" w/all small letters activates it) (default value "false")

In case none of the Roll, Blink or Scroll features is set to "true", the applet displays a steady text of Message.

The marquee program uses FontMetrics class to automatically proportion the font (Times New Roman in this case) to its size
(default value or as set by the user).  Set the width and height of the applet to fit the font size.

Include RWBMarquee.class in your web page folder, and add the following HTML code to the body of your web page:

<p align="CENTER">
<applet code="RWBMarquee.class" width="675" height="57">
	<param name="RollDelay" value=50>
    	<param name="BlinkDelay" value="800">
	<param name="ScrollDelay" value=4>
	<param name="Message" value="Programmer Naser El-Sharabasy Java2 SDK 1.4.2_08">
	<param name="Font" value="Times New Roman">
	<param name="FontSize" value=24>
	<param name="FontStyle" value=0>
	<param name="Roll" value="true">
	<param name="Blink" value="true">
	<param name="Scroll" value="true">
</applet>
</p>