ステータスバーにメッセージを表示する2

Sample
ブラウザ下部のステータスバーを見てね

 

スクリプト
<html>
<head>
<title></title>

<SCRIPT Language="JavaScript">
<!--
timeID = 10;
stcnt = 28;
msg = "このサイトはJavaスクリプトの可能性を追求するサイトです。";
mlen = msg.length;
wmsg = new Array(56);
wmsg[0]=msg;
blnk = " ";
for (i=1; i<56; i++)
{
b = blnk.substring(0,i);
wmsg[i] = "";
for (j=0; j<msg.length; j++) wmsg[i]=wmsg[i]+msg.charAt(j)+b;
wmsg[i] = wmsg[i].substring(wmsg[i].length-mlen,wmsg[i].length);
window.status = "メッセージ作成中...["+i+"/56]"
}

function wiper()
{
if (stcnt > -1) str = wmsg[stcnt]; else str = wmsg[0];
if (stcnt-- < -60) stcnt=55;
status = str;
clearTimeout(timeID);
timeID = window.setTimeout("wiper()",70);
}
// -->
</SCRIPT>

</head>

<body onLoad="wiper()">

</body>
</html>