Event.observe(window, 'load', doMinHeight, false);

function doMinHeight() {
	var minHeight = 150;
	var content = $('content');
	var height = content.getHeight();

	if ( height < minHeight )
	{
		content.setStyle({height: minHeight+'px'});
	}
}
