function res_fix() {
	if (document.getElementById("main_div").offsetWidth > 1300)
	{
		document.getElementById("fix_div").style.width = "1300px";
	} 
}

function res(){
	window.onresize = res_fix;
}

