<!--
/*
	This function determines where the #page layer should be located horizontally.
*/
function pageLocation()
{
	var location = 0;
	if( typeof( window.innerWidth ) == 'number' ) 
	{
		if( window.innerWidth > 1000 )
		{
			location = window.innerWidth/2 - 500;
		}
	}
	else if( document.documentElement && ( document.documentElement.clientWidth ) )
	{
		if( document.documentElement.clientWidth > 1000 )
		{
			location = document.documentElement.clientWidth/2 - 500;
		}
	}
	else if( document.body && ( document.body.clientWidth ) )
	{
		if( document.body.clientWidth > 1000 )
		{
			location = document.body.clientWidth/2 - 500;
		}
	}
	document.getElementById('page').style.left = location + "px";
}
-->