function PopOut_Show(panelId, hideScrollers, data) {
var panel = WebForm_GetElementById(panelId);
if (panel && panel.tagName.toLowerCase() == "div") {
    panel.style.visibility = "visible";
    panel.style.display = "inline";
    if (!panel.offset || hideScrollers) {
        panel.scrollTop = 0;
        panel.offset = 0;
        var table = WebForm_GetElementByTagName(panel, "TABLE");
        if (table) {
            WebForm_SetElementY(table, 0);
        }
    }
    PopOut_Position(panel, hideScrollers);
    var z = 1;
    panel.style.zIndex = z;
}
} 
