Con esta funcion lo podes frenar....
Código HTML:
<script type="text/javascript">
var x=0;
var y=15;
window.onload=progress();
function progress(){
var timer;
if(x<75){
x++;
document.getElementById('barra').style.width=x+'%';
setTimeout('progress()',y);
}else if(x<100){
x++;
y+=3;
document.getElementById('barra').style.width=x+'%';
timer=setTimeout('progress()',y);
}else{
x=0;
y=15;
progress();
//clearTimeout(timer);
//location.href='tuPagina.htm';
}
}
</script>
Lo acabo de probar en Firefox y en IE y anda bien en ambos....