// JavaScript Document
function fixflash(containerID){
var flashContainer = document.getElementById(containerID);
var flashMovie = document.createElement("td");   //change "td" inside the quotes to whatever html element will contain your flash movie
flashMovie.innerHTML = flashContainer.innerHTML.replace(/</g, "<").replace(/>/g, ">");
flashContainer.parentNode.insertBefore(flashMovie, flashContainer);
flashContainer.parentNode.removeChild(flashContainer);
flashMovie.setAttribute("id",containerID);
}
