Not _root but on level

Hello all,

I would like some help with actionscript, ive got this AS in my movie, problem is i don’t wont it to load on _root but on a level How can i make this… Any help would be beautiful…

home.onRelease = function() {
if (_root.currMovie == undefined) {
_root.currMovie = “blocnote”;
container.loadMovie(“blocnote.swf”);
} else if (_root.currmovie != “blocnote”) {
if (container._currentframe == container.midframe) {
_root.currMovie = “blocnote”;
container.play();
}
}
};

Andreas