﻿function OpenList(ShowObject, showAllQuestions)
{
    var hide = true;
    if(showAllQuestions)
    {
        if($('#'+ ShowObject)[0].style.display == 'none')
        {
            hide = false;
        }
    }

    if(hide)
    {
        $('#'+ ShowObject).toggle();
    }
}
