function fixEolas(){

if (navigator.appVersion.indexOf("MSIE")!=-1){
//alert('ie')

theObjects = document.getElementsByTagName("object");
    for (var i = 0; i < theObjects.length; i++) {
        theObjects[i].outerHTML = theObjects[i].outerHTML;
    } //end for


} //end if
}