// JavaScript Document
var cal = new CalendarPopup();

cal.showYearNavigation();
cal.setTodayText('');

cal.setReturnFunction("setD");
function setD(y,m,d) {
	document.mpscheckaressrch.year.value=y;
	document.mpscheckaressrch.month.selectedIndex=--m;
	for (var i=0; i<document.mpscheckaressrch.day.options.length; i++) {
		if (document.mpscheckaressrch.day.options[i].value==d) {
			document.mpscheckaressrch.day.selectedIndex=i;
			}
		}
	}

function getDateString(y_obj,m_obj,d_obj) {
	var y = y_obj.options[y_obj.selectedIndex].value;
	var m = m_obj.options[m_obj.selectedIndex].value;
	var d = d_obj.options[d_obj.selectedIndex].value;
	if (y=="" || m=="") { return null; }
	if (d=="") { d=1; }
	return str= y+'-'+m+'-'+d;
	}