/* This fixes the "click here to activate this object" on all objects (KB912812) */
objects = document.getElementsByTagName("object");
for (var i = 0; i < objects.length; i++) {
	objects[i].outerHTML = objects[i].outerHTML;
}
