function initdt(mf) {
var t = new Date;
mf.f5.value = t.getDate();
mf.f6.value = t.getMonth() + 1;
mf.f7.value = t.getFullYear();
}

// window.onload = initdt(document.myForm);