function ToggleHelp( ParentElement )
{
	for( var ChildIndex = 0; ChildIndex < ParentElement.childNodes.length; ChildIndex++ )
	{
		Element = ParentElement.childNodes[ChildIndex];
		if( Element.className == 'Help' )
		{
			if( Element.style )
			{
				if( Element.style.display != null )
				{
					if( Element.style.display != 'block' )
					{
						Element.style.display = 'block';
					}
					else
					{
						Element.style.display = 'none';
					}
				}
			}
		}
	}
}
