function today_function() {  today = new Date();  if(document.psearch) {    os = document.psearch.year.options;    for (var i=0; i<os.length; i++) {      if(os[i].value == today.getFullYear()) {        os[i].selected = true;        break;      }    }    os = document.psearch.month.options;    for (var i=0; i<os.length; i++) {      if(os[i].value == today.getMonth()+1) {        os[i].selected = true;        break;      }    }    os = document.psearch.day.options;    for (var i=0; i<os.length; i++) {      if(os[i].value == today.getDate()) {        os[i].selected = true;        break;      }    }  }}window.onload=today_function