function make_width() {
	var content_width = document.getElementById("left_col").offsetWidth+document.getElementById("right_col").offsetWidth;
	if (content_width > 1000) {
		document.getElementById("root").style.width = content_width;
	}
}