
// Cycle through all through all the object tags,
// and rewrite them so that they get activated
// Due to MS Patch detailed here: http://msdn.microsoft.com/ieupdate/
if (document.all){
	var objects=document.all.tags("OBJECT");
	for (var i=0; i<objects.length; i++) {
		objects[i].outerHTML = objects[i].outerHTML;
	}
}
