LoadMovie Half works?!?!?!

hey ive got a kinda weird problem…
ive got a movie loading in an external one…
and in flash its all good…
but once i run it in browser it dosent work… any suggestions as to why?
this is the code on the fram that loads in movie, its followed by a gotoAndplay this frame again…

[AS]
if(!wooeee){
wooeee=true;
time = new Date();
mil = time.getMilliseconds();
s = time.getSeconds();
m = time.getMinutes();
h = time.getHours();
//starttime=s+(m60)+(h120);
starttimeShow=(s)+(m60)+(h6060);
starttimeReal=starttimeShow+(mil/1000);
trace(starttimeReal);
}
trace(whichbook);
trace(titlebook);
title1.text=titlebook;
_parent.loadee.loadMovie(“content/”+whichbook);
//Load Statistics
Loaded=_parent.loadee.getBytesLoaded();
Total=_parent.loadee.getBytesTotal();
Procent=(Loaded/Total)100;
trace(Procent+"%");
loadBar._yscale=procent;
//////////Procent
time = new Date();
mil = time.getMilliseconds();
s = time.getSeconds();
m = time.getMinutes();
h = time.getHours();
//starttime=s+(m
60)+(h
120);
start1=(s)+(m60)+(h60*60);
timenow=start1+(mil/1000);
passed=(timenow-starttimeReal);
trace(passed);
speed=_parent.loadee.getBytesLoaded()/passed;
speedLoaded.text=(Math.round(speed)+“kb/s”);
timeleft.text=((_parent.loadee.getBytesTotal()-_parent.loadee.getBytesLoaded())/speed+“seconds left”);
////Load statistics end
trace(_parent.loadee.getBytesLoaded()+","+_parent.loadee.getBytesTotal());
if(_parent.loadee.getBytesTotal()>15){
if(_parent.loadee.getBytesLoaded()==_parent.loadee.getBytesTotal()){
_parent.reload1();
_parent.loadee._alpha=100;
_parent.reCenter();
gotoAndStop(1);
}
}
cancel.onPress = function(){
gotoAndPlay(31);
}
[/AS]
i would include the files , but the limit is 74 kb , and they are 256 kbs and the other one is just a swf thats being loaded in

//VoS