function car(){
var tot, car, por;
tot=_root.getBytesTotal();
car=_root.getBytesLoaded();
por=Math.round((car/tot)*100);
_root.barra._x=por;
_root.porcentaje.text=por;
if(car>=tot){
clearInterval(revisar);
play();
}
}
var revisar=setInterval(car,1);
stop();