function windowHeight() {
	// Standard browsers (Mozilla, Safari, etc.)
	if (self.innerHeight)
		return self.innerHeight;
	// IE 6
	if (document.documentElement && document.documentElement.clientHeight)
		return document.documentElement.clientHeight;
	// IE 5
	if (document.body)
		return document.body.clientHeight;
	// Just in case. 
	return 0;
}

function windowWidth() {
	// Standard browsers (Mozilla, Safari, etc.)
	if (self.innerWidth)
		return self.innerWidth;
	// IE 6
	if (document.documentElement && document.documentElement.clientWidth)
		return document.documentElement.clientWidth;
	// IE 5
	if (document.body)
		return document.body.clientWidth;
	// Just in case. 
	return 0;
}

function logoHeight()
{
return document.getElementById('container').scrollHeight;
}

function newsHeight()
{
return document.getElementById('copy').scrollHeight;
}

function handleResize() {
	var height = windowHeight();
	document.getElementById('container').style.height = height + 'px';
	height = windowHeight() - 102;
	document.getElementById('copy').style.height = height + 'px';
	var top = logoHeight() - 162;
	document.getElementById('logo').style.top = top + 'px';
	//height = newsHeight() - 126;
	//document.getElementById('newsBottom').style.height = height + 'px';
	//document.getElementById('listFrame').style.height = height + 'px';
	//var width = windowWidth() - 610;
	//document.getElementById('bottom').style.height = height + 'px';
	//document.getElementById('listFrame').style.width = width + 'px';
}