How to load XML in flash

<?xml version=“1.0” encoding=“UTF-8”?>
<Quiz TotalPoints=“1”>

&lt;questions number="1"
    question="Tiny red or purple spots on the skin appearing as a result of small hemorrhages within the dermal or submucosal layers are called "
    option1="petechiae"
    option2="peyronies" 
    option3="purigos" 
    option4="pityriasis rosea"
    answer="petechiae" 
    time = "60"&gt;
&lt;/questions&gt;

&lt;questions number="2"
    question="Kerato refers to "
    option1="tubular"
    option2="round"
    option3="horny"
    option4="spherical"
    answer="horny" 
    time="60"&gt;
&lt;/questions&gt;

</Quiz>

how can i read the “question,option1,option2,option3,option4,answer,time” values from the above XML.

thanks…