var container = document.id(document.body).getElement(".center_object");
window.onresize = resize;
		
resize();
		
function resize() {
	// top: 109
	// bottom: 25
	// min width 995
	//var width = Math.max(Window.getSize().x, 995);
	var height = Window.getSize().y - 44;
	
	container.setStyles({
		"top": 0,
		//"width": width,
		"height": height
	});
}
