Load Movie Call and can't find .swf

Working on a clients existing website. It is an interior design site consisting of a lot of products. Each product was animated in Flash and packaged for use on distributors sites from its manufacturer. The problem is that I’m missing a file and before I request it I wanted to make certain I was correct that itr wasn’t in the package.

<param name=“movie” value=“arlest_tbc.swf”> <param name=“quality” value=“high”>
<embed src=“arlest_tbc.swf” quality=“high” pluginspage=“http://www.macromedia.com/go/getflashplayer” type=“application/x-shockwave-flash” width=“272” height=“380”></embed></object>

Within the file it calls for

// Action script…

// [Action in Frame 1]
stop;
loadMovie(“colors_arlest.swf”, “_root.colors.colimport”);

But this movie isn’t located on the server or package and with each product name the action script changes to "colors_PRODUCTNAME and calls as follows:

loadMovie(“colors_blue.swf”, “_root.colors.colimport”);

or

loadMovie(“colors_red.swf”, “_root.colors.colimport”);

What gives?