function initdt2(mf) {
var t = new Date;
mf.day.value = t.getDate();
mf.month.value = t.getMonth() + 1;
mf.year.value = t.getFullYear();
}
function initdt3(mf1) {
var t1 = new Date;
mf1.day1.value = t1.getDate();
mf1.month1.value = t1.getMonth() + 1;
mf1.year1.value = t1.getFullYear();
}

// window.onload = initdt(document.myForm);
