/*
 * To jest teraz w TPLu bo trzeba tlumaczyc przyciski [komar]
 */
 
/*
function addToFavorites(id) {	
	xajax_addEventToFavorites(id);
	$('event'+id).className = 'selectedEvent';
	$('event_button'+id).innerHTML = '<a style="cursor:pointer;"  onclick="delFromFavorites('+id+');" id="event_button'+id+'" >DelFromFavorites</a>';
}


function delFromFavorites(id) {
	xajax_delEventFromFavorites(id);
	$('event'+id).className = 'singleEvent';	
	$('event_button'+id).innerHTML = '<a style="cursor:pointer;"  onclick="addToFavorites('+id+');" id="event_button'+id+'" >AddToFavorites</a>'; 	
}
*/

