English
<!--To achieve this effect, two steps are required. The first step is: add the following code to the <head> area--> <script language=""> <!-- var yourwords = "Welcome to the Website Building Academy!! !"; var speed = 700; var control = 1; function flash() { if (control == 1) { window.status=yourwords; control=0; } else { window.status=""; control=1; } setTimeout("flash()",speed); } // --> </script> <!--Step 2: Add "onLoad="flash()"" to the <body> tag --> <body onLoad="flash()">