function resizeContent() {
	if (document.body.offsetHeight) {
		var windowHeight = document.body.offsetHeight;
	} else {
		var windowHeight = document.documentElement.clientHeight;
	}
	
	var contentHeight = document.getElementById('content').offsetHeight;
	var contentDiv = document.getElementById('content');
	
	contentDiv.style.height = (windowHeight-285) + 'px';
	
	if (document.getElementById('forum')) {
		document.getElementById('forum').style.height = (windowHeight-287) + 'px';
	}
	
}
