Path to read XML file

I have a flash file that was made to reads and load data from xml file.

In following script where should I define the path of xml file?

<script type=“text/javascript”>

AC_FL_RunContent(
‘codebase’,‘http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab
#version=9,0,28,0’,‘width’,‘640’,‘height’,'436
',‘src’,‘files/flash/enterpagew’,‘quality’,‘high’,‘pluginspage’,
http://www.adobe.com/shockwave/download/download.cgi?P1
_Prod_Version=ShockwaveFlash’,‘movie’,‘files/flash/enterpagew’ );
//end AC code

</script>

<noscript>
<object classid=“clsid27CDB6E-AE6D-11cf-96B8-444553540000”
codebase=“http://download.macromedia.com/pub/shockwave/cabs/flash/
swflash.cab#version=9,0,28,0” width=“640” height=“436”>

<param name=“movie” value=“files/flash/enterpagew.swf” />
<param name=“quality” value=“high” />

<embed src=“files/flash/enterpagew.swf” quality=“high”
pluginspage=“http://www.adobe.com/shockwave/download/download.cgi?P1
_Prod_Version=ShockwaveFlash” type=“application/x-shockwave-flash” width=“640” height=“436”></embed>

</object>
</noscript>

Did someone tell you to pass the path to xml in the embed code?

Actually the flash script has to read different xml files in different conditions. For example:

IF A=1 THEN
Read from USA xml file (usa.xml)
ELSEIF A=2 THEN
Read from CANADA xml file (canada.xml)
end if

That dosn’t help me any:(
Can you post the fla for enterpagew.swf?