/* ==============================================
    resizeContainer JavaScript Functions
			Version 1.0
			Date: 02/2004
   ==============================================
*/
function blockError(){return true;}
window.onerror = blockError;

function resizeContainer(elementName, offset)
{
	try
	{
	
		var gridHeight = document.documentElement.offsetHeight - offset;
		if (gridHeight < 450)
		{
			document.getElementById(elementName).style.height = 450;
		}
		else
		{
			document.getElementById(elementName).style.height = gridHeight;
		}
	
	}
	catch(e)
	{
		//do nothing;
	}
	
}

function blockError(){return true;}
window.onerror = blockError;
