<EFSPlayer>
   <Frame title="XML Form" x="100" y="100" w="500" h="400" background="C0C0C0"/>
   <Label alignment="CENTER" text="Please enter you personal information:" font="Helvetica-bold-16" Y="10" W="500"/>
   <Label text="Your Sign In Name" X="10" Y="50"/>
   <TextField name="UserName" text="Joe" columns="16" X="180" Y="50" editable="false" Required="true"/>
   <Label text="Your Password" X="10" Y="70"/>
   <TextField name="Password" columns="16" rows="1" EchoChar="*" X="180" Y="70"/>
   <Label text="Retype your Password" X="10" Y="90"/>
   <TextField name="RetypedPassword" columns="16" EchoChar="*" X="180" Y="90"/>
   <Label text="Secret Question" X="10" Y="110"/>
   <TextField name="SecretQuestion" text="Middlen mother's name" editable="false" columns="30" X="180" Y="110"/>
   <Label text="Answer to Secret Question" X="10" Y="130"/>
   <TextField name="SecretAnswer" columns="30" X="180" Y="130" rows="2" text="jhdjfshfsd"/>
   <Label text="E-Mail Address" X="10" Y="150"/>
   <TextField name="EMailAddress" columns="40" X="180" Y="150"/>
   <Label text="Birthday" X="10" Y="170"/>
   <TextField name="Birthday" text="2 Feb 1999" columns="20" X="180" Y="170"/>
   <Label text="Phone number" X="10" Y="190"/>
   <TextField name="Phone" text="(604)111-2222" columns="20" X="180" Y="190"/>
   <Label text="Select your country" X="10" Y="210"/>
   <ListBox name="Country" columns="30" rows="2" X="180" Y="210"
	selected="840">
	<ListItem text="Canada" position="1" value="124"/>
	<ListItem text="United States" position="2" value="840"/>
   </ListBox>
   <Label text="State" X="10" Y="250"/>
   <ComboBox name="State" columns="10" rows="6" X="180" Y="250" selected="NY">
	<ListItem text="WA" position="3" value="WA"/>
	<ListItem text="MA" value="MA"/>
	<ListItem text="NY" position="2" value="NY"/>
	<ListItem text="AB" position="1" value="AB"/>
   </ComboBox>
   <Button name="Submit" label="Submit" X="150" Y="360" W="80" H="25" font="Helvetica-bold">
      <condition type="CheckRequired" message="Required field %s !"/>
      <condition type="eq" field1="Password" field2="RetypedPassword" message="Repeat Password!"/>
      <condition type="mask" field1="Birthday" value="Date" message="Wrong Birthday!"/>
      <condition type="mask" field1="Phone" value="(###)###-####" message="Wrong Phone number!"/>
   </Button>
   <Button name="Cancel" label="Cancel" X="280" Y="360" W="80" H="25" font="Helvetica-bold"/>
</EFSPlayer>
