function AdjustHeight(sTitle)
{
	var iHeight = document.body.scrollHeight;
	if (iHeight < 500) iHeight=500;
	if (parent.parent)	
		{	
			parent.parent.SetTdHeight(iHeight + 10);
			parent.parent.SetTitle(sTitle);
		}		
}

function changeFrame()
{
	if(parent.MainFrame == null || parent.MainFrame == undefined)
	return;
	if(parent.MainFrame.cols=="20%,80%")
	{
		parent.MainFrame.cols="0%,*";		
	}
	else
	{
		parent.MainFrame.cols="20%,80%";		
	}
}

function changeTreeFrame()
{
	if(parent.MainFrame == null || parent.MainFrame == undefined)
	return;
	if(parent.MainFrame.cols=="20%,80%")
	{
		parent.MainFrame.cols="50%,*";		
	}
	else
	{
		parent.MainFrame.cols="20%,80%";		
	}
}

