<!--
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);
}
// -->
