Swf embedded problem

OK, so I’m still working on combining two tuts in one. I have a main (index) that has a preloader and it loads 3 different swf’s into a content area. After numberous failures, I finally had the stinking thing working, and now it’s NOT. AHHHHH!!! I digress… The problem I’m having is that the index (when posted on the website) is showing the preloader (as if the images are being loaded) and not stopping. Everything works fine when I test, it works fine when I access the SWF (index) on it’s own, but when I stick it on an HTML page, it falls apart. Does anyone know what is going on? Does anyone have a fix? Here is part of some code that I think needs a fix:

farm.onRelease = function() {
if (_root.section != “/farm.swf”) {
_root.section = “/farm.swf”;
_root.transition.gotoAndPlay(“closing”);
}
};

This code is located in the preloader section:
FRAME1: _root.section=“farm.swf”;
FRAME9: loadMovie(_root.section,_root.content);
stop();
FRAME24: stop();

I tried using “this”, should I use something else?