<!ELEMENT brokers ((errorcd),(errortxt),(broker*),(salesmanager?))>
  <!ELEMENT errorcd (#PCDATA)>
  <!ELEMENT errortxt (#PCDATA)>
  <!ELEMENT broker ((contact*),(companyname),(address1),(address2),(city),(state),(zip),(logourl))>
      <!ELEMENT contact ((firstname),(lastname),(title),(phone),(fax),(ext),(email),(type))>
	       <!ELEMENT firstname (#PCDATA)>
	       <!ELEMENT lastname (#PCDATA)>
	       <!ELEMENT title (#PCDATA)>
	       <!ELEMENT phone (#PCDATA)>
	       <!ELEMENT fax (#PCDATA)>
	       <!ELEMENT email (#PCDATA)>
	       <!ELEMENT type (#PCDATA)>
	  <!ELEMENT companyname (#PCDATA)>
	  <!ELEMENT address1 (#PCDATA)>
	  <!ELEMENT address2 (#PCDATA)>
	  <!ELEMENT city (#PCDATA)>
	  <!ELEMENT state (#PCDATA)>
	  <!ELEMENT zip (#PCDATA)>
	  <!ELEMENT logourl (#PCDATA)>
  <!ELEMENT salesmanager ((firstname),(lastname),(title),(phone),(ext),(email))>
	  <!ELEMENT firstname (#PCDATA)>
	  <!ELEMENT lastname (#PCDATA)>
	  <!ELEMENT title (#PCDATA)>
	  <!ELEMENT phone (#PCDATA)>
	  <!ELEMENT ext (#PCDATA)>
	  <!ELEMENT email (#PCDATA)>

<!--
()-one occurrence
(+)-one or more occurrence
(*)-0 or more occurrence
(?)-0 or 1 occurrence

-->