function ToggleForm( state )
{
	FormObj	= document.getElementById( 'disclaimer' );

	if( state == 1 && FormObj.display == "block" )
	{
		return;
	}

	if( state == 0 )
	{
		FormObj.style.display	= "none";
		return;
	}

	FormObj.style.display	= "block";

	return;
}
