/**
 * ieupdatefix.js - April 17,2006
 * New IE update requires user to Click and approve of any 
 * Active X, flash, media, etc content before using it. 
 * It can be annoying for those with flash buttons on site.
 */

theObjects = document.getElementsByTagName("object"); 
for (var i = 0; i < theObjects.length; i++) { 
theObjects[i].outerHTML = theObjects[i].outerHTML; 
}

