Does my prelaoder work for you?

Take a look at this swf, http://newmediasvcs.com/TDC/index2.html
My client is saying that the screen appears blank for a few seconds and then he sees the preloader for a second and the movie starts. When I look at it, I see the preloader working normally. I’m using action script 1.0 and this preloader code:

 
stop();
myInterval = setInterval(preloader, 10);
function preloader(){
if(getBytesLoaded()>=getBytesTotal()){
play();
clearInterval(myInterval);
}
percentLoaded = Math.ceil ((getBytesLoaded()/getBytesTotal()) * 100);
preloader_text.text = percentLoaded + "%";
loader._xscale = (getBytesLoaded()/getBytesTotal())*200;
}

What do you guys see? Does the preloader work normally for you?
Jake B