#!/usr/X/bin/wksh -motif

XtAppInitialize topLevel k k "$@"

XmCreateForm ca $topLevel form

XtCreateManagedWidget optionsLabel optionsLabel label $ca \
				labelString:"Options" \
				topAttachment:attach_form \
				leftAttachment:attach_form \

XtCreateManagedWidget options options textField $ca \
				value:"$Other" \
				cursorPosition:"${#Other}" \
				columns:40 \
				topAttachment:attach_form \
				rightAttachment:attach_form \
				leftAttachment:attach_widget \
				leftWidget:$optionsLabel \

XtCreateManagedWidget otherLabel otherLabel label $ca \
				labelString:"Other Options" \
				topAttachment:attach_widget \
				topWidget:$optionsLabel \
				leftAttachment:attach_form \
				bottomAttachment:attach_form \

XtCreateManagedWidget other other textField $ca \
				value:"$Other" \
				cursorPosition:"${#Other}" \
				columns:40 \
				topAttachment:attach_widget \
				topWidget:$options \
				rightAttachment:attach_form \
				leftAttachment:attach_widget \
				leftWidget:$otherLabel \
				bottomAttachment:attach_form \

mc $ca
rw $topLevel
ml
