if(typeof(CalendarController) == 'undefined')
    CalendarController = new Object();

Object.extend(CalendarController,
{
	_ret: null,

	submitDate: function(root)
	{
		var year = $F('calendar-year');
		var month = $F('calendar-month');
		document.location = root+year+'/'+month;
	}

});