function resizeContent()
	{
	}

function resizeControl(objName)
	{
		var obj;
		
		obj = window.document.getElementById(objName);
		
		if ( obj != null )
			{
				alert( "clientHeight: " + document.body.clientHeight + ", Top: " + obj.parent.style.top) + 'px';
				//obj.style.height = (document.body.clientHeight - obj.offsetTop - 200) + 'px';
			}
	
	}