Need help

Stupid forum is formatting my tags :stuck_out_tongue:

Anyway, I need help reading this into flash. The different number of attributes and no image is throwing me off.


<product-comment >
  <comment>These products are very popular today!</comment>
  
  <product category="Jewelry"
           image="image.gif"
           detail="www.url.com"
           >
    <price>49.9900</price>
    <product-attributes>
        <attribute name="Metal Type" value="gold" />
        <attribute name="Jewelry Type" value="Earring Set" />
    </product-attributes>
  </product>

  <product category="Gemstone"
        detail="www.url.com"
        ><!-- no image for this product -->
    <price>8.9900</price>
    <product-attributes>
        <attribute name="Color" value="Colorless" />
        <attribute name="Treatment" value="Untreated" />
        <attribute name="Cut" value="Quantum" />
    </product-attributes>
  </product>


</product-comment>