function initdt(mf) {
var t = new Date;
mf.Day.value = t.getDate();
mf.Month.value = t.getMonth() + 1;
mf.Year.value = t.getFullYear();
}