(el, pName, pValue)
| 495 | } |
| 496 | |
| 497 | function createObjParam(el, pName, pValue) { |
| 498 | var p = createElement("param"); |
| 499 | p.setAttribute("name", pName); |
| 500 | p.setAttribute("value", pValue); |
| 501 | el.appendChild(p); |
| 502 | } |
| 503 | |
| 504 | /* Cross-browser SWF removal |
| 505 | - Especially needed to safely and completely remove a SWF in Internet Explorer |
no test coverage detected