// console.log(xhr_rd.readyState);
if (xhr_rd.readyState == 4) {
- if (xhr_rd_watchdog != null) {
+ if (typeof xhr_rd_watchdog != 'undefined' && xhr_rd_watchdog != null) {
hbit('C');
clearTimeout(xhr_rd_watchdog);
xhr_rd_watchdog = null;
function xhr_rd_start(sess,stat,subst,step)
{
if (the_end) {
- if (xhr_rd_watchdog != null) {
+ //x alert("the_end1");
+ if (typeof xhr_rd_watchdog != 'undefined' && xhr_rd_watchdog != null) {
hbit('C');
clearTimeout(xhr_rd_watchdog);
xhr_rd_watchdog = null;
}
else {
- if (xhr_rd_watchdog != null) {
+ //x alert("the_end2");
+ if (typeof xhr_rd_watchdog != 'undefined' && xhr_rd_watchdog != null) {
clearTimeout(xhr_rd_watchdog);
xhr_rd_watchdog = null;
}
setTimeout(xhr_rd_poll, tout, sess);
}
else {
- if (xhr_rd_watchdog != null) {
- clearTimeout(xhr_rd_watchdog);
- xhr_rd_watchdog = null;
+ //x alert("the_end3");
+ if (typeof(xhr_rd_watchdog) != 'undefined') {
+ if (xhr_rd_watchdog != null) {
+ clearTimeout(xhr_rd_watchdog);
+ xhr_rd_watchdog = null;
+ }
}
}
return;