// JavaScript Document
//Required to load and activate objects (esp Flash)
//Workaround for IE nag to click and activate


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