function initdt(mf) {
var t = new Date;
mf.arrivemonth.value = t.getMonth() + 1;
mf.arriveday.value = t.getDate();
mf.arriveyear.value = t.getFullYear();
mf.departmonth.value = t.getMonth() + 1;
mf.departday.value = t.getDate() + 7;
mf.departyear.value = t.getFullYear();
}

// window.onload = initdt(document.myForm);

