function ActiveFlash() {
 var agt=navigator.userAgent.toLowerCase();
 var is_opera = (agt.indexOf("opera") != -1);
 var is_konq = (agt.indexOf('konqueror') != -1);
 var is_safari = (agt.indexOf('safari')!=-1)
 var is_khtml  = (is_safari || is_konq);
 var is_ie   = ((agt.indexOf('msie') != -1) && (!is_opera) && (!is_khtml));
 if (is_ie) {
   if (window.document.getElementsByTagName) {
     // Get all the tags of type object in the page.
     var objs = document.getElementsByTagName("object");
     for (i=0; i<objs.length; i++) {
       if (objs[i].classid) {
         if (objs[i].classid.toLowerCase() == "clsid:d27cdb6e-ae6d-11cf-96b8-444553540000") {
           if (objs[i].outerHTML) {
             objs[i].outerHTML = objs[i].outerHTML;
           }
         }
       }
     }
   }
 }
 
 return true;
}