
function showCalendar(month, year, showDay, delId){
	if(!delId) delId = 0;
	if(showDay){
		parametry = {
			'tx_keyac_pi1[dell_id]' : delId,
			'tx_keyac_pi1[month]' : month,
			'tx_keyac_pi1[year]' : year,
			'tx_keyac_pi1[showDay]' : showDay
		};
	}
	else{
		parametry = {
			'tx_keyac_pi1[dell_id]' : delId,
			'tx_keyac_pi1[month]' : month,
			'tx_keyac_pi1[year]' : year
		};
	}	
	$.post('index.php?type=1414',parametry,function(data){
	 	$('div.tx-keyac-pi1').html(data);
	 	tooltip();
	});
}
