	resize = function() {  
		var winH1 = document.getElementById("wrapper").offsetHeight;
		try {
			document.getElementById("rightcolumn").style.height = (winH1 -187) + 'px';
			document.getElementById("content").style.height = (winH1 - 187) + 'px';
			document.getElementById("reference").style.height = (winH1 - 187) + 'px';
			document.getElementById("news").style.height = (winH1 - 187) + 'px';
		}
		catch(ex) {}
	}
	window.onload=resize;
