//////////////////////////////////////////////////////
//	背景色の設定
//
function SetBackColor(
	colBG
	)
{
	if( document.getElementById )
	{
		document.getElementById( "light_contents" ).style.backgroundColor = colBG ;
	} else
	if( document.all )
	{
		document.all( "light_contents" ).style.backgroundColor = colBG ;
	}

	if( document.getElementById )
	{
		document.getElementById( "dark_contents" ).style.backgroundColor = colBG ;
	} else
	if( document.all )
	{
		document.all( "dark_contents" ).style.backgroundColor = colBG ;
	}
}


//////////////////////////////////////////////////////
//	背景画像の設定
//
function SetBackImage(
	strImage
	)
{
	if( document.getElementById )
	{
		document.getElementById( "dark_contents" ).style.backgroundImage = strImage ;
	} else
	if( document.all )
	{
		document.all( "dark_contents" ).style.backgroundImage = strImage ;
	}
}

