speed = 100;					//スクロールスピード
message = "ヘッドラインニュースが入ります。";	//表示するテキスト
var space = "                    ";
var count = 0;
var text = space + space + space + message;

function ScrollText(){
	setTimeout("ScrollText()", speed);
	document.F1.T1.value = text.substring(count, text.length + 1);
	if(count > text.length){count = 0;}
	count++;
}
window.onload = ScrollText;

