этот прогресс бар я взял с вашего сайта
Code
<a id="all" href="javascript://" onclick="progressBar();"><img src="http://ucozon.ru/_dr/61/03506807.png"></a>
<script type="text/javascript">
function progressBar(set) {
set = set || {};
document.getElementById('all').innerHTML = '<div style="width:' + (set.outW || 660) + 'px;height:' + (set.outH || 27) + 'px;' + (set.outB || 'border:1px solid #ffffff') + ';"><div id="pb" style="background:' + (set.inB || '#6196DA') + ';width:0px;height:' + (set.outH || 27) + 'px;"></div></div>';
var bar = document.getElementById('pb');
x = setInterval(function () {
if (parseInt(bar.style.width) < (set.outW || 660)) {
bar.style.width = parseInt(bar.style.width) + (set.step || 1) + 'px';
} else {
clearInterval(x);
location.href = '$FILE_URL$';}},
500 / (set.speed || 1))}
</script>
можно ли сделать так чтобы при истечении времени не скачивание начиналост а перенаправление на другую страницу типа target="_blank"
всем спасибо