function setCurrentDay() {
	var today = new Date();
	var today_day   = today.getDate();
	var today_month = today.getMonth();
	var today_year  = today.getFullYear();
	var frmQuickFind = document.getElementById( "frmQuickFind" );
	frmQuickFind.SrchFromDay.options[today_day-1].selected = true;
	frmQuickFind.SrchFromMonth.options[today_month].selected = true;
	frmQuickFind.SrchFromYear.options[0].value = today_year;
	frmQuickFind.SrchFromYear.options[0].text = today_year;
}
function submitFORM() {
	window.open('','srch_result','height=600,width=750,toolbar=no,scrollbars=yes,resizable=yes').focus();
	document.getElementById( "frmQuickFind" ).submit();
}
addOnloadFunction( setCurrentDay );