var edcMediumPanel;
var edcLargePanel;

function edcLanguagesConfigPanelOpen()
{
    if (typeof(edcLargePanel) != 'undefined') edcLargePanel.close();
    wdth = 480;
    hght = 360;
    lft  = screen.width/2 - wdth/2;
    tp   = screen.height/2 - hght/2;
    edcMediumPanel = window.open(folder+'edc_application/Panels/Language/MainPanel.php?page=1&filter=none','edcMediumPanel','width='+wdth+', height='+hght+', left='+lft+', top='+tp+'');
    edcMediumPanel.focus();
}

function edcUserTypePanelOpen()
{
    if (typeof(edcLargePanel) != 'undefined') edcLargePanel.close();
    wdth = 480;
    hght = 360;
    lft  = screen.width/2 - wdth/2;
    tp   = screen.height/2 - hght/2;
    edcMediumPanel = window.open(folder+'edc_application/Panels/User/Type/MainPanel.php?page=1&filter=none','edcMediumPanel','width='+wdth+', height='+hght+', left='+lft+', top='+tp+'');
    edcMediumPanel.focus();
}

function edcUserGroupPanelOpen()
{
    if (typeof(edcLargePanel) != 'undefined') edcLargePanel.close();
    wdth = 480;
    hght = 360;
    lft  = screen.width/2 - wdth/2;
    tp   = screen.height/2 - hght/2;
    edcMediumPanel = window.open(folder+'edc_application/Panels/User/Group/MainPanel.php?page=1&filter=none','edcMediumPanel','width='+wdth+', height='+hght+', left='+lft+', top='+tp+'');
    edcMediumPanel.focus();
}

function edcUserAccountPanelOpen()
{
    if (typeof(edcMediumPanel) != 'undefined') edcMediumPanel.close();
    wdth = 640;
    hght = 480;
    lft  = screen.width/2 - wdth/2;
    tp   = screen.height/2 - hght/2;
    edcLargePanel = window.open(folder+'edc_application/Panels/User/Account/MainPanel.php?page=1&filter=none','edcLargePanel','width='+wdth+', height='+hght+', left='+lft+', top='+tp+'');
    edcLargePanel.focus();
}

function edcStructurePanelOpen()
{
    if (typeof(edcMediumPanel) != 'undefined') edcMediumPanel.close();
    wdth = 640;
    hght = 480;
    lft  = screen.width/2 - wdth/2;
    tp   = screen.height/2 - hght/2;
    edcLargePanel = window.open(folder+'edc_application/Panels/Structure/MainPanel.php?page=1','edcLargePanel','width='+wdth+', height='+hght+', left='+lft+', top='+tp+'');
    edcLargePanel.focus();
}

function edcSubPanelOpen(aNodeId)
{
    if (typeof(edcMediumPanel) != 'undefined') edcMediumPanel.close();
    wdth = 640;
    hght = 480;
    lft  = screen.width/2 - wdth/2;
    tp   = screen.height/2 - hght/2;
    edcLargePanel = window.open(folder+'edc_application/Panels/Structure/SubPanel.php?parent_id='+aNodeId+'&node_id='+aNodeId,'edcLargePanel','width='+wdth+', height='+hght+', left='+lft+', top='+tp+'');
    edcLargePanel.focus();
}