Flash CS5 AS2 - External SWF's not opening on server

I developed a website based on this Kirupa tutorial (Flash CS5 Actionscript 2.0)
http://www.kirupa.com/developer/mx2004/transitions.htm

Now, when I publish the file from flash it opens the main index file but not the subsequent external swf files…what do i need to change in my code to make the external swf’s work?

(Here’s the link to the page:http://amrittesting.co.nf/)

//CODE to play the home.swf when the file is opened…
_root.currMovie = “home”;
container.loadMovie(_root.currMovie+".swf");

//This is the code on each button…

on (release) {

if (_root.currMovie == undefined) {

_root.currMovie = “the school”;
container.loadMovie(“the school.swf”);
} else if (_root.currMovie != “the school”) {
if (container._currentframe >= container.midframe) {

_root.currMovie = “the school”;
container.play();

}

}

}

I’ve been trying non-stop for days now…would really appreciate any help…