/* 
AUTHOR: Fanis Sarmidis
DATE: 2007/04/18
SUBJECT: FIX "click to activate and use this control" prompt box in IE

Just add the above code below the last <object> command. 
You may add it in the footer.cfm file

<cfoutput><SCRIPT src="#Request.Root#/scripts/flash_fix.js" type="text/javascript"></SCRIPT></cfoutput>

*/

objects = document.getElementsByTagName("object");
for (var i = 0; i < objects.length; i++)
{
    objects[i].outerHTML = objects[i].outerHTML;
}
