function resize() {

	var w = 0;
	if (typeof (window.innerWidth) == 'number') {
		scrWidth = window.innerWidth;
	} else if (document.body && document.body.offsetWidth) {
		scrWidth = document.body.offsetWidth;
	} else if (document.documentElement && document.documentElement.clientWidth) {
		scrWidth = document.documentElement.clientWidth;
	} else if (document.body && document.body.clientWidth) {
		scrWidth = document.body.clientWidth;
	}
	
	var w = scrWidth - 350;
	if (w == null)
		w = document.documentElement.clientWidth - 350;
		
	var o = document.getElementById("centerColumn");
	if (o == null)
		return;
	if (w > 650) {
		o.style.width = w + "px";
	}
	else {
		o.style.width = "640px";
	}



}

window.onload=resize;
window.onresize=resize;

