function toggleBloc(sId, iHeight, bNoEffect)
{
    if (iHeight > 0) { op = 1; }
    else             { op = 0; }

    if (bNoEffect)
    {
        $('#'+sId).css({'height': iHeight, 'opacity': op});
    }
    else
    {
        $('#'+sId).animate({'height': iHeight, 'opacity': op}, 300);
    }
}
