
var now = new Date();
var day = now.getDate();
var month = now.getMonth()+1; // numbered from 0
var year = now.getYear();
if (year < 1900) year += 1900; // or use getFullYear() in v4 browsers
/* comment the following line out to remove the display of date */
/*document.write(now.toString()+'<br>'+year+'/'+month+'/'+day); */
function setDrops(theForm) {
   // I assume Day and months are all there and start with "Select a Day and Select a month
   theForm.Day.selectedIndex = day;
   theForm.Month.selectedIndex = month;
  // now the year will be slightly different
   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;
}



if (navigator.appName == "Netscape") {
document.write("<link REL=stylesheet TYPE=text/css HREF=/css/style_nn.css>") 
}
else {
document.write("<link REL=stylesheet TYPE=text/css HREF=/css/style.css>")
}