Passing Varibales to Xml help

I have a swf that has 8 buttons. Each button needs to call a specific video on a separate swf which are listed in a xml file. This swf is in a separate window. Is it possible to do a button action where it can call and open a video from a xml list to a specific listed node? Thanks for your time!!

Example:

BUTTON ACTIONS OF FIRST SWF

BTN 1

on(release){
   Open video 1
}

BTN2

on(release){
   Open video 2
}

BTN3

on(release){
   Open video 3
}

///AND SO ON.....

THE XML FILE FOR THE OTHER SWF FILE ON ANOTHER WINDOW

<?xml version="1.0" ?>
<videos>
	<video>
		<title>Caption 1</title>
		<file><![CDATA[videos/video_1.flv]]></file>
	</video>
	<video>
		<title>Caption 2</title>
		<file><![CDATA[videos/video_2.flv]]></file>
	</video>
	<video>
		<title>Caption 3</title>
		<file><![CDATA[videos/video_3.flv]]></file>
	</video>
	<video>
		<title>Caption 4</title>
		<file><![CDATA[videos/video_4.flv]]></file>
	</video>
	<video>
		<title>Caption 5</title>
		<file><![CDATA[videos/video_5.flv]]></file>
	</video>
	<video>
		<title>Caption 6</title>
		<file><![CDATA[videos/video_6.flv]]></file>
	</video>
	<video>
		<title>Caption 7</title>
		<file><![CDATA[videos/video_7.flv]]></file>
	</video>
	<video>
		<title>Caption 8</title>
		<file><![CDATA[videos/video_8.flv]]></file>
	</video>
</videos>