<?xml version="1.0"?>
<!DOCTYPE order SYSTEM "order.dtd">
<!-- Example Order Form from _XML: A Mananger's Guide_ -->

<order SOURCE="web" CUSTOMERTYPE="consumer" CURRENCY="USD">
   <addresses>
      <address ADDTYPE="bill">
         <firstname>Kevin</firstname>
         <lastname>Dick</lastname>
         <street ORDER="1">123 Anywhere Lane</street>
         <street ORDER="2">Apt 1b</street>
         <city>Palo Alto</city>
         <state>CA</state>
         <postal>94303</postal>
         <country>USA</country>
      </address>
      <address ADDTYPE="ship">
         <firstname>Kevin</firstname>
         <lastname>Dick</lastname>
         <street ORDER="1">123 Not The Same Lane</street>
         <street ORDER="2">Work Place</street>
         <city>Palo Alto</city>
         <state>CA</state>
         <postal>94303</postal>
         <country>USA</country>
      </address>
   </addresses>

   <lineitems>
      <lineitem ID="line1">
         <product CAT="Mboard">440BX Motherboard</product>
         <quantity>1</quantity>
         <unitprice>200</unitprice>
      </lineitem>

      <lineitem ID="line2">
         <product CAT="RAM">128 MB PC-100 DIMM</product>
         <quantity>2</quantity>
         <unitprice>175</unitprice>
      </lineitem>

      <lineitem ID="line3">
         <product CAT="CDROM">40x CD-ROM</product>
         <quantity>1</quantity>
         <unitprice>50</unitprice>
      </lineitem>
   </lineitems>

   <payment>
      <card CARDTYPE="VISA">
         <cardholder>Kevin S. Dick</cardholder>
         <number>11111-22222-33333</number>
         <expiration>01/01</expiration>
      </card>
   </payment>
</order>
