
var now = new Date();
var now2 = new Date();
timezoneoffset = now.getTimezoneOffset();
if ((navigator.appVersion.indexOf('MSIE 3') != -1)) timezoneoffset = timezoneoffset * (-1);
now.setTime(now2.getTime() + timezoneoffset*60*1000);
now.setTime(now2.getTime() + 48*60*60*1000);
var day2 = now.getDate();
var month2 = now.getMonth();
var day = now2.getDate();
var month = now2.getMonth(); // numbered from 0




// numbered from 0
function setDrops(frm_Search) {
   // I assume Day and months are all there and start with "Select a Day and Select a month
   frm_Search.day.selectedIndex = day;
   frm_Search.month.selectedIndex = month;
}

	