Event.observe(window, 'load', function(){ fixHeight(); });
function fixHeight(){
	if($('content')){
		var minHeight = 720;
		var height = $('content').getHeight();
		if(height < minHeight){
			$('content').style.height = minHeight + 'px';
		}
	}
}
