(el, pName, pValue)
| 462 | } |
| 463 | |
| 464 | function createObjParam(el, pName, pValue) { |
| 465 | var p = createElement("param"); |
| 466 | p.setAttribute("name", pName); |
| 467 | p.setAttribute("value", pValue); |
| 468 | el.appendChild(p); |
| 469 | } |
| 470 | |
| 471 | /* Cross-browser SWF removal |
| 472 | - Especially needed to safely and completely remove a SWF in Internet Explorer |
no test coverage detected