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

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

