Is it possible loadmovie from a folder within the main folder

Please can some one help, I am working in Flash cs3 with actionscript 2

Is it possible to loadMovie into the main movie when the swf is not located in the same folder that the main swf is located

This is the script that works when I am loading the swf from the same folder as the main swf,

this.createEmptyMovieClip(“empty_mc”, 1);
empty_mc.loadMovie(“pageflip_loader.swf”);this.cre ateEmptyMovieClip(“empty_mc”, 1);
empty_mc.loadMovie(“pageflip_loader.swf”);
button1_btn.onRelease = function()
{
empty_mc.unloadMovie();
};
empty_2_mc.loadMovie(“pageflip_loader.swf”);
button2_btn.onRelease = function()
{
empty_2_mc.loadMovie(“pageflip_loader.swf”)

I need to load a second movie into the third frame of my project, I placed the swf that is to be loaded into a folder as it is a loader for a flipbook, and it has the same name

I have tried this, but it does not work, can someone PLEASE help.

this.createEmptyMovieClip(“empty_mc”, 1);
empty_mc.loadMovie(“flipbook_pb/pageflip_loader.swf”);this.createEmptyMovieClip(“e mpty_mc”, 1);
empty_mc.loadMovie(“flipbook_pb/pageflip_loader.swf”);
button1_btn.onRelease = function()
{
empty_mc.unloadMovie();
};
empty_2_mc.loadMovie(“flipbook_pb/pageflip_loader.swf”);
button2_btn.onRelease = function()
{
empty_2_mc.loadMovie();
}