// JavaScript Document
var stcnt
function init(){
stcnt = 0;
blnk = "@                                                                                                                                                               ";
msg = blnk + document.forms[0].indata.value;
scr()
}
function scr() {
	stcnt = stcnt + 2;
	if(stcnt >=msg.length) {stcnt =0 }
	str = msg.substring(stcnt, msg.length);
	document.forms[0].output.value = str;
	timeID = window.setTimeout("scr()",250);
}