//This code fixes the IE update for ActiveX controls. (Tooltip: "Clicl to activate and use this control")
objects = document.getElementsByTagName("object");
for (var i = 0; i < objects.length; i++)
{
    objects[i].outerHTML = objects[i].outerHTML;
}
