function addNewPage(pSectionName)
{
	var loadedEntityId = top.frames.headerFrame.loadedEntityid;
	if (loadedEntityId == -1)
	{
		top.document.location="../login.html";
	}
	
	var outer = top.document.getElementById('ID_MainFrameSet');
	outer.rows = '90, 0, *';
	
	var sectionDiv = top.frames.newPageFrame.document.getElementById('id_sectionName');
	if (sectionDiv != null)
	{
		sectionDiv.innerHTML = pSectionName;
	}
	var sectionInput = top.frames.newPageFrame.document.getElementById('id_section');
	if (sectionInput != null)
	{
		sectionInput.value = pSectionName;
	}
}

function returnToMain()
{
	var outer = top.document.getElementById('ID_MainFrameSet');
	outer.rows = '90, *, 0';
}
