// JavaScript Document
function pop_tc(S_P_Anchor, w, h){
        hw = open(S_P_Anchor, 'dbpower', 'resizable=no,scrollbars=no,width='+w+',height='+h);
        if (hw != null){if (hw.opener == null) hw.opener = self;}
        if (hw.focus) hw.focus();
}
function pop_tc_scroll(S_P_Anchor, w, h){
        hw = open(S_P_Anchor, 'dbpower', 'resizable=no,scrollbars=yes,width='+w+',height='+h);
        if (hw != null){if (hw.opener == null) hw.opener = self;}
        if (hw.focus) hw.focus();
}
