// JavaScript Document		<!--
var now = addDays( new Date(),7);
var day =now.getDate();
var month = now.getMonth(); // numbered from 0

var Ret=addDays( new Date(),14);
var retday=Ret.getDate();
var retmonth=Ret.getMonth();
/* comment the following line out to remove the display of date */
/*document.write(month+'/'+day); */

function setdrops(theForm) {
   // I assume Day and months are all there and start with "Select a Day and Select a month
   theForm.FLTStartDate1Day.selectedIndex = day;
   theForm.FLTStartDate1Month.selectedIndex = month;
   theForm.FLTEndDate1Day.selectedIndex = retday;
   theForm.FLTEndDate1Month.selectedIndex = retmonth;
}

function addDays(myDate,days) {
    return new Date(myDate.getTime() + days*24*60*60*1000);
}