<!--
var now = new Date();
var day = now.getDate()-1;
var month = now.getMonth()+0; // numbered from 0
var year = now.getYear();
if (year < 1900) year += 1900; // or use getFullYear() in v4 browsers

function setDrops(theForm) {

   theForm.day.selectedIndex = day;
   theForm.month.selectedIndex = month;

   var found = 0;
   for(i=1;i<theForm.year.options.length;i++) {
      if (theForm.year.options[i].value == year) {
         found =i;
         break;
      }
   }
   theForm.year.selectedIndex =  found;
}
//-->