function doClock() {
	window.setTimeout( "doClock()", 1000 );
	today = new Date();
	self.status = today.toString();
}
doClock()
