function changeMonth( year, section) {
	var s = document.getElementById("selectMonth").options[document.getElementById("selectMonth").selectedIndex].value;
//	alert( s );
	if (s != '') {
		document.location = '?action=agenda&section='+section+'&month='+s+'&year='+year;
	}
}

function changeYear( month, section) {
	var s = document.getElementById("selectYear").options[document.getElementById("selectYear").selectedIndex].value;

	if (s != '') {
		document.location = '?action=agenda&section='+section+'&month='+month+'&year='+s;
	}
}


