function updateProgress (event) {
if (event.lengthComputable) {
var status = document.getElementById("b"+event.target.x);
status.innerHTML = 'Загружено ' + event.loaded + ' байт из '+ event.total;
} else {
// Unable to compute progress information since the total size is unknown
}
}