English
<!--To achieve this effect, two steps are required. The first step is to add the following code to the <head> area--> <SCRIPT language="JavaScript"> <!-- function scrollit(seed) { var m1 = "HI: Hello! "; var m2 = "Welcome to the web teaching network"; var m3 = "Please give us your comments, thank you! "; var msg=m1+m2+m3; var out = " "; var c = 1; if (seed > 100) { seed--; cmd="scrollit("+seed+")"; timerTwo=window.setTimeout(cmd,100); } else if (seed <= 100 && seed > 0) { for (c=0 ; c < seed ; c++) { out+=" "; } out+=msg; seed--; window.status=out; cmd="scrollit("+seed+")"; timerTwo=window.setTimeout (cmd,100); } else if (seed <= 0) { if (-seed < msg.length) { out+=msg.substring(-seed,msg.length); seed--; window.status=out; cmd="scrollit("+seed+")"; timerTwo=window.setTimeout(cmd,100); } else { window.status=" "; timerTwo=window.setTimeout("scrollit(100)",75); } } } //--> </SCRIPT> <!--Step 2: Add "onLoad="scrollit(100)"" to the <body> tag--> <body onLoad="scrollit(100)" >