//Changes month/year values in calendar
function changeCalendar(month, year) {
	document.getElementById('hiddenMonth').value = month;
	document.getElementById('hiddenYear').value = year;
	document.form.submit();
}