/*
Calendar Functions
*/

//Used to filter calendar page
function filterCalendar(month, year, filterNum) {
	if (filterNum == "") {
		document.location.href="calendar.asp?month=" + month + "&year=" + year;
	} else {
		document.location.href="calendar.asp?month=" + month + "&year=" + year + "&filter=" + filterNum;
	}
}

function filterCalendarPrint(month, year, filterNum) {
	if (filterNum == "") {
		document.location.href="calendar_print.asp?month=" + month + "&year=" + year;
	} else {
		document.location.href="calendar_print.asp?month=" + month + "&year=" + year + "&filter=" + filterNum;
	}
}

//Used to change dates on calendar-list.asp
function chgDate(month, year) {
	document.location.href="calendar-list.asp?month=" + month + "&year=" + year;
}
