﻿function ChangePanelVisability(panelName, shouldShow) {
    if (shouldShow == true) {
        $('#' + panelName).show();
    }
    else {
        $('#' + panelName).hide();
    }
}

