, ?
var xhr = new XMLHttpRequest();
xhr.responseType = 'blob';
xhr.timeout = 60000;
xhr.onload = function(e2){
var blob = xhr.response;
}
xhr.ontimeout = function(){
}
xhr.open('GET', "/path/to/URL.cmd?param1=val1¶m2=val2", true);
xhr.send();
, timeout , , spec responseType . , .