function resize( minHeight )
{
	/*
	var body = document.getElementById( "body" );
	var bodyHeight = body.clientHeight;
	var flashStyle = document.getElementById( "flash" ).style;

	//-------------------------------------------------------------------------
	if( bodyHeight < minHeight )
	{
		flashStyle.height = "100%";
		//flashStyle.height = minHeight + "px";
	}
	else
	{
		flashStyle.height = "100%";
	}
	*/
}

