function dispTodayMark(m, d) { 
	dt = new Date();
	tm = dt.getMonth() + 1;
	td = dt.getDate();
	if(tm == m && td == d) document.write("<img src=image/today.gif width='50' height='13' align=middle>");
}

