EVENTS_CALENDAR_AJAX_URL = '/common/ajax/front/components/EventsCalendar/ajax.php';

function fncEventsCalendar_ChangeDate(strDate, intOffset, location_id, category_id, uniq_id){
	$('date_' + strDate).innerHTML = "<div style=\"height:115px;\"><br><br><br><center>Loading<br><br><img src=\"/common/templates/default/images/icons_modules/loadingsmall.gif\" /></center></div>";
	
	new Ajax.Updater({success: 'date_' + strDate, failure: null}, EVENTS_CALENDAR_AJAX_URL, {
		parameters : {
			action 				: 'ChangeDate',
			date   				: strDate,
			offset 				: intOffset,
			location_id 		: location_id,
			category_id 		: category_id,
			uniq_id 		: uniq_id
		},
		evalScripts : true,
		onComplete: function(transport){
			
		}, 
		onFailure: function(transport){
			alert('Failure in communication to the server, please try again later.');
		}
	});
}