(id)
| 492 | } |
| 493 | |
| 494 | function removeObjectInIE(id) { |
| 495 | var obj = getElementById(id); |
| 496 | if (obj) { |
| 497 | for (var i in obj) { |
| 498 | if (typeof obj[i] == "function") { |
| 499 | obj[i] = null; |
| 500 | } |
| 501 | } |
| 502 | obj.parentNode.removeChild(obj); |
| 503 | } |
| 504 | } |
| 505 | |
| 506 | /* Functions to optimize JavaScript compression |
| 507 | */ |
no test coverage detected
searching dependent graphs…