function Body_OnLoad()
{
	PositionContent();
}

function Body_OnResize()
{
	PositionContent();
}

function PositionContent()
{
	var iOffset = 16;
	var iContentHeight = 582;
	var iContentWidth = 582;
	var iMinHeight = iContentHeight / 2;
	var iMinWidth = iContentWidth;
	var iHeight = window.GetHeight() / 2;
	var iWidth = window.GetWidth();
	
	document.body.style.overflow = "hidden";
	
	if( window.GetHeight() < iContentHeight )
	{
		iHeight = iMinHeight;
		document.body.style.overflow = "auto";
	}
	
	if( window.GetWidth() < iContentWidth )
	{
		iWidth = iMinWidth;
		document.body.style.overflow = "auto";
	}
	
	var topImage = document.getElementById( "TopImage" );
	topImage.style.height = iHeight - iOffset;
	topImage.style.width = iWidth;
	
	var bottomImage = document.getElementById( "BottomImage" );
	
	bottomImage.style.height = iHeight + iOffset;
	bottomImage.style.width = iWidth;
	
	var content = document.getElementById( "Content" );
	content.style.top = document.getElementById( "TopImage" ).offsetHeight - 260;
	content.style.left = ( iWidth - content.offsetWidth ) / 2;
	
//	if( !document.all )
//	{
//		document.getElementById( "Scrollbar" ).style.width = "10px";
//		document.getElementById( "Scrollbar" ).style.height = "172px";
//	}
	
	topImage.style.visibility = "visible";
	bottomImage.style.visibility = "visible";
	content.style.visibility = "visible";
}

window.defaultStatus = "Creative Cities";