var MaxWidth = 1000;
var MinWidth = 800;
var SliderWidth = 18;
var BarWidth = 180;
	
function calcContentAreaWidthFixed()
{

	if (document.getElementById('contentcenter') != null)
	{
		if(document.getElementById('pnlRightBarPanel') == null & document.getElementById('pnlLeftBarPanel') == null)
		{
			return MaxWidth;
		}
		
		if(document.getElementById('pnlRightBarPanel') == null)
		{
			return MaxWidth - BarWidth;
		}

		if(document.getElementById('pnlLeftBarPanel') == null)
		{
			return MaxWidth - BarWidth;
		}
		
		return MaxWidth - (2*BarWidth);
	}
	
	return MaxWidth - (2*BarWidth);
}

function adjustContentAreaFixed()
{
	if (document.getElementById('contentcenter') != null)
	{
		document.getElementById('contentcenter').style.width = calcContentAreaWidthFixed()+'px';
	}
}		  

