(id)
| 525 | } |
| 526 | |
| 527 | function removeObjectInIE(id) { |
| 528 | var obj = getElementById(id); |
| 529 | if (obj) { |
| 530 | for (var i in obj) { |
| 531 | if (typeof obj[i] == "function") { |
| 532 | obj[i] = null; |
| 533 | } |
| 534 | } |
| 535 | obj.parentNode.removeChild(obj); |
| 536 | } |
| 537 | } |
| 538 | |
| 539 | /* Functions to optimize JavaScript compression |
| 540 | */ |
no test coverage detected