function resizeWindow()
{
	if (typeof(window.innerHeight) == 'number') // non-IE
	{
		newHeight = window.innerHeight;
		newWidth = window.innerWidth;
	}
	else if (document.documentElement && (document.documentElement.clientWidth || document.documentElement.clientHeight)) // IE 6+ in 'standards compliant mode'
	{
		newHeight = document.documentElement.clientHeight;
		newWidth = document.documentElement.clientWidth;
	}
	else if (document.body && (document.body.clientWidth || document.body.clientHeight)) // IE 4 compatible
	{
		newHeight = document.body.clientHeight;
		newWidth = document.body.clientWidth;
	}
	
 	$("page_content").style.height = (newHeight - 52) + "px";
}
