i have XML file
for my game but it uses the [URL] link to locate the pictures
but i want to be able to put my game on say blank dvd and have it play from it

this is the current configuration
Actionscript Code:
<level split="true">
        <!-- up to 2 cardback objects -->
        <cardback url="http://rojere.com/game/sisters/bg/top1.jpg" />
        <cardback url="http://rojere.com/game/sisters/bg/top1.jpg" />
        <!-- up to 12 pairs-->
        <pair url1="http://rojere.com/game/sisters/L1/t1.jpg"
                  url2="http://rojere.com/game/sisters/L1/b1.jpg" />   
        <pair url1="http://rojere.com/game/sisters/L1/t2.jpg"
              url2="http://rojere.com/game/sisters/L1/b2.jpg" />
        <pair url1="http://rojere.com/game/sisters/L1/t3.jpg"
              url2="http://rojere.com/game/sisters/L1/b3.jpg" />   
        <pair url1="http://rojere.com/game/sisters/L1/t4.jpg"
              url2="http://rojere.com/game/sisters/L1/b4.jpg" />       
        <pair url1="http://rojere.com/game/sisters/L1/t5.jpg"
              url2="http://rojere.com/game/sisters/L1/b5.jpg" />   
        <pair url1="http://rojere.com/game/sisters/L1/t6.jpg"
              url2="http://rojere.com/game/sisters/L1/b6.jpg" />   
        <pair url1="http://rojere.com/game/sisters/L1/t7.jpg"
              url2="http://rojere.com/game/sisters/L1/b7.jpg" />
        <pair url1="http://rojere.com/game/sisters/L1/t8.jpg"
              url2="http://rojere.com/game/sisters/L1/b8.jpg" />   
        <pair url1="http://rojere.com/game/sisters/L1/t9.jpg"
              url2="http://rojere.com/game/sisters/L1/b9.jpg" />
        <pair url1="http://rojere.com/game/sisters/L1/t10.jpg"
              url2="http://rojere.com/game/sisters/L1/b10.jpg" />  
        <pair url1="http://rojere.com/game/sisters/L1/t11.jpg"
              url2="http://rojere.com/game/sisters/L1/b11.jpg" />  
        <pair url1="http://rojere.com/game/sisters/L1/t12.jpg"
              url2="http://rojere.com/game/sisters/L1/b12.jpg" />
    </level>

how do i write it so that it looks for the files offline?
keeping the (url) but getting rid of the "http://rojere.com/"

something like this?

Actionscript Code:
<level split="true">
        <!-- up to 2 cardback objects -->
        <cardback url="game/sisters/bg/top1.jpg" />
        <cardback url="game/sisters/bg/top1.jpg" />
        <!-- up to 12 pairs-->
        <pair url1="game/sisters/L1/t1.jpg"
                  url2="game/sisters/L1/b1.jpg" /> 
        <pair url1="game/sisters/L1/t2.jpg"
              url2="game/sisters/L1/b2.jpg" />
        <pair url1="game/sisters/L1/t3.jpg"
              url2="game/sisters/L1/b3.jpg" /> 
        <pair url1="game/sisters/L1/t4.jpg"
              url2="game/sisters/L1/b4.jpg" />     
        <pair url1="game/sisters/L1/t5.jpg"
              url2="game/sisters/L1/b5.jpg" /> 
        <pair url1="game/sisters/L1/t6.jpg"
              url2="game/sisters/L1/b6.jpg" /> 
        <pair url1="game/sisters/L1/t7.jpg"
              url2="game/sisters/L1/b7.jpg" />
        <pair url1="game/sisters/L1/t8.jpg"
              url2="game/sisters/L1/b8.jpg" /> 
        <pair url1="game/sisters/L1/t9.jpg"
              url2="game/sisters/L1/b9.jpg" />
        <pair url1="game/sisters/L1/t10.jpg"
              url2="game/sisters/L1/b10.jpg" />
        <pair url1="game/sisters/L1/t11.jpg"
              url2="game/sisters/L1/b11.jpg" />
        <pair url1="game/sisters/L1/t12.jpg"
              url2="game/sisters/L1/b12.jpg" />
    </level>

or is it something entirely different?