public bool IsReviewCondition( eREVIEW_CONDITION condition )
	{
		#if _USE_REVIEW_CONDITION
		return	m_dicCondition[condition];
		#endif

		return true;
	}
	public void SetReviewCondition( eREVIEW_CONDITION condition , bool enable )
	{
		if (m_dicCondition.ContainsKey (condition) == false) 
		{
			m_dicCondition.Add( condition , enable );
			return;
		}

		m_dicCondition [condition] = enable;
	}