ActionScript Change On Transitions Tutorial

In the tutorial Transitions Between External SWFs-- http://www.kirupa.com/developer/mx2004/transitions.htm --can anyone tell me how to eliminate JUST the horizontal transition that moves the movie in and out so it just loads the movie normally (no midframe, just a container). I believe this is the script that needs to be altered:
on (release) {
if (_root.currMovie == undefined) {
_root.currMovie = “work”;
container.loadMovie(“work.swf”);
} else if (_root.currMovie != “work”) {
if (container._currentframe >= container.midframe) {
_root.currMovie = “work”;
container.play();
}
}
}
Thanks for any help.