var kata = 'W E R O L';
function dispkata(){
	window.status = kata;
	timerID = setTimeout("dispkata()", 100);
}
dispkata();