<!--	
	function resizeLayout() {
		if( $("#frame_content").height() < $(document).height()-100 )	
			$("#frame_content").height( $(document).height()-100 );
	}

	$(document).ready( resizeLayout );
	$(window).resize( resizeLayout );

	
-->