Movie not working after loading

Hi

I got this problem, that if i load a movie by ckliking on a button it doesnt work but if it is on its owne it works just fine…

Here are examples: (button-> Tutorials)
http://www.asus13.pri.ee/fla/menu2.html

on its own: http://www.asus13.pri.ee/fla/tutsisu.html

button code

on(release){ 
	 if(cont_loaded = !cont_loaded){ 
			_root.insis.loadMovie("tutsisu.swf"); 
	 }else{ 
			_root.insis.unloadMovie(); 
	 } 
} 

movie code

 on(change)
{
if ( this.selectedItem.label == "tut1" )
{
loadText = new LoadVars();
loadText.load("sisu.txt");
loadText.onLoad = function() {
_root.scroller.text = this.sisutext;
};
 
 
}
else if ( this.selectedItem.label == "web" )
{
getURL("http://www.kirupa.com","_blank");
}
}

i would be wery happy if some one would tell me what i am doing wrong :frowning: