I have created a form in flash. The flash file takes the data from a xml
document (thefile.xml). In the xml file. Here is the xml:

<?xml version="1.0" encoding="UTF-8"?>
<thefile>
<jobtitle name="position 1">
<jobnumber>ar001</jobnumber>
<rate>1000</rate>
</jobtitle>


<jobtitle name="position 2">
<jobnumber>ar002</jobnumber>
<rate>2000</rate>
</jobtitle>


<jobtitle name="position 3">
<jobnumber>ar003</jobnumber>
<rate>3000</rate>
</jobtitle>
</thefile>

Now in the form there is an "apply" button, which should accept the
"jobnumber" as the subject. What is the script for the same since the jobnumber
will keep on changing and also increasing or decreasing? I used the normal
getURL("mailto:abc@somemail.com?subject=subject here") script... but in
"subject=" what should I write? Please help asap! Thank you.