// set the dates
var now = new Date();
var month = now.getMonth();
var day = now.getDate();
var year = now.getYear();

document.details.slFromMonth.selectedIndex = month;
document.details.slFromDay.selectedIndex = day + 1;
document.details.slFromYear.value = year;

document.details.slToMonth.selectedIndex = month;
document.details.slToDay.selectedIndex = day + 8;
document.details.slToYear.value = year;