var last='text_default';

function ShowBloc(NomBloc, show)
    {
    if(last!='')
        {
        var Bloc_d = document.getElementById(last);
        Bloc_d.style.display = "none";
        }
        
    var Bloc = document.getElementById(NomBloc);
    if(show)
        {
        Bloc.style.display = "block";
        last = NomBloc;
        }
    else
        {
        Bloc.style.display = "none";
        }
    }