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+', scrollbars=1');
	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+', scrollbars=1');
	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+', scrollbars=1');
	edcMediumPanel.focus();
}

function edcTagsPanelOpen()
{
	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/Dictionary/TagsPanel.php?page=1&filter=none','edcMediumPanel','width='+wdth+', height='+hght+', left='+lft+', top='+tp+', scrollbars=1');
	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+', scrollbars=1');
	edcLargePanel.focus();
}

function edcUserLogPanelOpen()
{
	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/Log/MainPanel.php?page=1&filter=none','edcLargePanel','width='+wdth+', height='+hght+', left='+lft+', top='+tp+', scrollbars=1');
	edcLargePanel.focus();
}

function edcStructurePanelOpenBase()
{
	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+', scrollbars=1');
	edcLargePanel.focus();
}

function edcSubPanelOpen(aNodeId,aParentId)
{
	if (aParentId == undefined)aParentId = aNodeId;
	if (typeof(edcMediumPanel) != 'undefined') edcMediumPanel.close();
	wdth = 800;
	hght = 550;
	lft  = screen.width/2 - wdth/2;
	tp   = screen.height/2 - hght/2;
	edcLargePanel = window.open(folder+'edc_application/Panels/Structure/SubPanel.php?parent_id='+aParentId+'&node_id='+aNodeId,'edcLargePanel','width='+wdth+', height='+hght+', left='+lft+', top='+tp+', scrollbars=1');
	edcLargePanel.focus();
}

function edcStructurePanelOpen(node, parent, id, structureId, type)
{
	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/'+type+'/EditPanel.php?node_id='+node+'&lang=pl&parent_id='+parent+'&page=1&mode=edit&id='+id+'&structure_id='+structureId,'edcLargePanel','width='+wdth+', height='+hght+', left='+lft+', top='+tp+', scrollbars=1');
	edcLargePanel.focus();
}
