objects = document.getElementsByTagName("object");
for (var i = 0; i < objects.length; i++)
{
    objects[i].outerHTML = objects[i].outerHTML;
}

<!-- This is a fix for the IE Flash "Click to activate and use this Control" problem. For reference example, see Funds CD Homepage code -->

