﻿function ieFlashFix(){
    try{
        if(navigator.appName=="Microsoft Internet Explorer"){
	        if(navigator.userAgent.toLowerCase().indexOf("opera")==-1){
                theObjects = document.getElementsByTagName("object"); 
                for (var i = 0; i < theObjects.length; i++) { 
                    theObjects[i].outerHTML = theObjects[i].outerHTML;
                } 
            }
        }
    }catch(e){}
}
ieFlashFix()
