/*
This fixes the "click to activate and use this control" message with flash in Win/IE
http://www.amarasoftware.com/flash-problem.htm
*/

objects = document.getElementsByTagName("object");
for (var i = 0; i < objects.length; i++)
{
objects[i].outerHTML = objects[i].outerHTML;
}