var s_hashClearedId = new CHash();

function ClearInputValueOnce( item, strId)
{
	if ( !s_hashClearedId.Item( strId))
	{
		s_hashClearedId.Set( strId, true);
		SetItemValue( item, '');
	}
	return true;
}
