﻿var strBrowser = navigator.userAgent.toLowerCase();
 if (strBrowser.indexOf('msie') > -1 && strBrowser.indexOf('mac') < 0) {
 
  if (document.getElementsByTagName) {
   // Get all the tags of type object in the page.
   var objs = document.getElementsByTagName('object');
 
   for (i=0; i<objs.length; i++) {
    // Get the HTML content of each object tag
    // and replace it with itself.
    objs[i].outerHTML = objs[i].outerHTML;
   }
  }
 }