function initdt(mf) {
var t = new Date;
mf.day.value = t.getDate();
mf.month.value = t.getMonth() + 1;
mf.year.value = t.getFullYear();
}