// Common JavaScript Routines
function CalendarSubmit(year, month)
{
 document.getElementById("txtSearchYear").value = year;
 document.getElementById("txtSearchMonth").value = month;
 document.srchbox.submit();
}
