
var yourwords = " "
var speed = 30;
var control = 1;

function flash()	{
	if (control == 1)	{
		window.status=yourwords;
		control=0;
	} else {
		window.status=yourwords;
		control=1;
	}
	setTimeout("flash();",speed);
}

//flash();