// A JavaScript patch to repress the message "Click to activate and use this control" in IE when hovering over a flash file
objects = document.getElementsByTagName("object");

if (objects != null)
{
	for (var i = 0; i < objects.length; ++i)
	{
		objects[i].outerHTML = objects[i].outerHTML;
	}
}
