<?xml version="1.0" encoding="utf-8"?>
<contactFormStructure>
	
	<formItems>

		<item id="1" label="Name" required="true">
			<textToShow>YOUR NAME:</textToShow>
			<restrict>^a-z</restrict>
		</item>
		
		<item id="2" label="Company" required="true">
			<textToShow>COMPANY:</textToShow>
			<restrict>^a-z</restrict>
		</item>
		
		<item id="3" label="Phone" required="true">
			<textToShow>TELEPHONE:</textToShow>                     
            <restrict>+-.0-9</restrict>
		</item>

		<item id="4" label="E-mail" required="true">
			<textToShow>E-MAIL:</textToShow>
			<validator>EmailValidator</validator>
			<restrict>^a-z</restrict>
		</item>
		
		<item id="5" label="Message" required="true">
			<textToShow>MESSAGE:</textToShow>
			<restrict>^a-z</restrict>
		</item>

	</formItems>
	
</contactFormStructure>
