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

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

 

スクリプト

<html>
<head>
<title></title>

<SCRIPT Language="JavaScript">
<!--
str = "このサイトはJavaスクリプトの可能性を追求するサイトです。";
blnk = " ";
str += blnk;
mcnt = 0;
msg = "";
stcnt=0;
timeID = "";

function wiper()
{
stcnt++;
if (stcnt>3)
{
stcnt = 0;
msg += str.substring(mcnt,mcnt+1);
mcnt++;
if (mcnt >= str.length) { mcnt=0; msg=""; }
}
csr = " ";
if (stcnt & 1) csr ="_";
status = msg+csr;
clearTimeout(timeID);
timeID = setTimeout("wiper()",30);
}
// -->
</SCRIPT>

</head>

<body onLoad="wiper()">

</body>
</html>