// Fixes the Flash IE 7.0 issue
// http://www.mix-fx.com/flash-prompt.htm

theObjects = document.getElementsByTagName("object");
for (var i = 0; i < theObjects.length; i++) {
theObjects[i].outerHTML = theObjects[i].outerHTML;
}
