function showThisNews(intNewsId, strBlokId)
{
    $('#'+strBlokId).css('height', 'auto');
    MyAjaxRequest(strBlokId,'/js/ajaxdata.php?showFullNews=true&newsId='+intNewsId);
}

function hideThisNews(intNewsId, strBlokId)
{
    $('#'+strBlokId).css('height', '73px');
    MyAjaxRequest(strBlokId,'/js/ajaxdata.php?showSmallNews=true&newsId='+intNewsId);    
}

function showThisAgenda(intAgendaId, strBlokId)
{
    $('#'+strBlokId).css('height', 'auto');
    MyAjaxRequest(strBlokId,'/js/ajaxdata.php?showFullAgenda=true&agendaId='+intAgendaId);
}

function hideThisAgenda(intAgendaId, strBlokId)
{
    $('#'+strBlokId).css('height', '73px');
    MyAjaxRequest(strBlokId,'/js/ajaxdata.php?showSmallAgenda=true&agendaId='+intAgendaId);  
}
