//---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
//	AJAX Framework / Window
//---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
//	cheltenham software
//	http://cheltenham-software.com/
//	無断配布や二次利用を禁止します。
//---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
// ウィンドウの表示領域をチェック
function cheltenhamWindow_getSizeDisplay()
{
	// IE, Opera
	if( document.all )
	{
		if( document.body != null )
		{
			return( { width:document.body.clientWidth,height:document.body.clientHeight } );
		}
		else
		{
			return( { width:document.documentElement.clientWidth,height:document.documentElement.clientHeight } );
		}
	}
	// NN 
	else if( document.layers || document.getElementById )
	{ 
		return( { width:window.innerWidth,height:window.innerHeight } );
	}
	else
	{
		return( null );
	}
}

// ウィンドウのトップまでスクロールする
function cheltenhamWindow_scrollToTop()
{
	window.scrollTo( 0, 0 );
}
