XML and AS 3.0!

Hi,

I m loading images from a folder through XML basically these are stickers… I want to place ulpoad sticker button so that anyone can upload custom stickers
but the problem is after the addition of new sticker i want to append that info into xml as well as place that sticker in the folder at the server too…

now the problem is that how can i accomplish this using AS , so that next time newly added stickers will be shown wid previous ones on the page the xml definition is here,

<?xml version="1.0" encoding="utf-8"?>
<images>
<images>image1.jpg</images>
<images>image2.jpg</images>
<images>image3.jpg</images>
<images>image4.jpg</images>
<images>image5.jpg</images>
<images>image6.jpg</images>

</images>

now when a new sticker is added the xml will become.

<?xml version="1.0" encoding="utf-8"?>
<images>
<images>image1.jpg</images>
<images>image2.jpg</images>
<images>image3.jpg</images>
<images>image4.jpg</images>
<images>image5.jpg</images>
<images>image6.jpg</images>
**<images>image7.jpg</images>**
</images>

and so on … and also that image will be added in the folder…
How can i do this…

Plz help me this is a part of my project…
Thanks in advance…