function cal(y, m) {

	$.get(Prefix + "/ajax_calendar/", { year: y, month: m },
	function(res) {
		$("#calendar_container").html(res);
    });
}
