<!--
timeID = 10;
speed  = 200;
n = 1;

function dispDate()
{
	theDate = new Date();
	year    = "0"+theDate.getYear();
	month   = "0"+(1+theDate.getMonth());
	date    = "0"+theDate.getDate();
	days    = theDate.getDay();
	year    = year.substring(year.length-2,year.length+1);
	month   = month.substring(month.length-2,month.length+1);
	date    = date.substring(date.length-2,date.length+1);
	if (navigator.appName.indexOf("Netscape") >= 0) n = 2; else n = 1;
	youbi   = "日月火水木金土".substring(days*n,days*n+n)+"曜日";
	status = year+"年"+month+"月"+date+"日"+youbi;
	clearTimeout(timeID);
	timeID = setTimeout("dispDate()",speed);
}
// -->