﻿function fixFlashForIE()
{
    if (document.getElementById)
    {
        var objectFlash = document.getElementById("objFlash") ? document.getElementById("objFlash") : document.getElementById("embFlash");
        if (objectFlash)
        {
            objectFlash.outerHTML = objectFlash.outerHTML;
        }
    }
}

var isIE = (navigator.appName=="Microsoft Internet Explorer")?true:false;
if (isIE)
{
    window.onload=fixFlashForIE;
}