document.write('<div id=\'vid2_videoplaybackframe_1300803\' class=\'exflashclass1300803 mi24flash_1300803\' style=\'visibility:hidden;\'>\n');document.write('\n');document.write('<script>\n');document.write('/*\n');document.write(' *  @does: log in test enviroment\n');document.write(' *  @use:  mi24logger.log(tolog)\n');document.write(' */\n');document.write('\n');document.write('if (typeof window.docReady == \'undefined\') {\n');document.write('    (function(funcName, baseObj) {\n');document.write('        // The public function name defaults to window.docReady\n');document.write('        // but you can pass in your own object and own function name and those will be used\n');document.write('        // if you want to put them in a different namespace\n');document.write('        funcName = funcName || "docReady";\n');document.write('        baseObj = baseObj || window;\n');document.write('        var readyList = [];\n');document.write('        var readyFired = false;\n');document.write('        var readyEventHandlersInstalled = false;\n');document.write('\n');document.write('        // call this when the document is ready\n');document.write('        // this function protects itself against being called more than once\n');document.write('        function ready() {\n');document.write('            if (!readyFired) {\n');document.write('                // this must be set to true before we start calling callbacks\n');document.write('                readyFired = true;\n');document.write('                for (var i = 0; i < readyList.length; i++) {\n');document.write('                    // if a callback here happens to add new ready handlers,\n');document.write('                    // the docReady() function will see that it already fired\n');document.write('                    // and will schedule the callback to run right after\n');document.write('                    // this event loop finishes so all handlers will still execute\n');document.write('                    // in order and no new ones will be added to the readyList\n');document.write('                    // while we are processing the list\n');document.write('                    readyList[i].fn.call(window, readyList[i].ctx);\n');document.write('                }\n');document.write('                // allow any closures held by these functions to free\n');document.write('                readyList = [];\n');document.write('            }\n');document.write('        }\n');document.write('\n');document.write('        function readyStateChange() {\n');document.write('            if ( document.readyState === "complete" ) {\n');document.write('                ready();\n');document.write('            }\n');document.write('        }\n');document.write('\n');document.write('        // This is the one public interface\n');document.write('        // docReady(fn, context);\n');document.write('        // the context argument is optional - if present, it will be passed\n');document.write('        // as an argument to the callback\n');document.write('        baseObj[funcName] = function(callback, context) {\n');document.write('            // if ready has already fired, then just schedule the callback\n');document.write('            // to fire asynchronously, but right away\n');document.write('            if (readyFired) {\n');document.write('                setTimeout(function() {callback(context);}, 1);\n');document.write('                return;\n');document.write('            } else {\n');document.write('                // add the function and context to the list\n');document.write('                readyList.push({fn: callback, ctx: context});\n');document.write('            }\n');document.write('            // if document already ready to go, schedule the ready function to run\n');document.write('            if (document.readyState === "complete") {\n');document.write('                setTimeout(ready, 1);\n');document.write('            } else if (!readyEventHandlersInstalled) {\n');document.write('                // otherwise if we don\'t have event handlers installed, install them\n');document.write('                if (document.addEventListener) {\n');document.write('                    // first choice is DOMContentLoaded event\n');document.write('                    document.addEventListener("DOMContentLoaded", ready, false);\n');document.write('                    // backup is window load event\n');document.write('                    window.addEventListener("load", ready, false);\n');document.write('                } else {\n');document.write('                    // must be IE\n');document.write('                    document.attachEvent("onreadystatechange", readyStateChange);\n');document.write('                    window.attachEvent("onload", ready);\n');document.write('                }\n');document.write('                readyEventHandlersInstalled = true;\n');document.write('            }\n');document.write('        }\n');document.write('    })("docReady", window);\n');document.write('}\n');document.write('\n');document.write('//mi24funcClazz = function() {\n');document.write('function mi24func() {\n');document.write('    /*\n');document.write('     * load Script mi24player.load("myscript.*", "css/js")\n');document.write('     */\n');document.write('    this.load = function (fname, ftype) {\n');document.write('        if (ftype == "js") {\n');document.write('            var fref = document.createElement("script");\n');document.write('            fref.setAttribute("type", "text/javascript");\n');document.write('            fref.setAttribute("src", fname)\n');document.write('        }\n');document.write('        else if (type == "css") {\n');document.write('            var fref = document.createElement("link");\n');document.write('            fref.setAttribute("rel", "stylesheet");\n');document.write('            fref.setAttribute("type", "text/css");\n');document.write('            fref.setAttribute("href", fname)\n');document.write('        }\n');document.write('        if (typeof fref != "undefined") {\n');document.write('            document.getElementsByTagName("head")[0].appendChild(fref);\n');document.write('        }\n');document.write('    };\n');document.write('\n');document.write('    //  return fref;\n');document.write('\n');document.write('\n');document.write('    this.decodeBase64 = function (s) {\n');document.write('        var e = {}, i, k, v = [], r = "", w = String.fromCharCode;\n');document.write('        var n = [\n');document.write('            [65, 91],\n');document.write('            [97, 123],\n');document.write('            [48, 58],\n');document.write('            [43, 44],\n');document.write('            [47, 48]\n');document.write('        ];\n');document.write('\n');document.write('        for (z in n) {\n');document.write('            for (i = n[z][0]; i < n[z][1]; i++) {\n');document.write('                v.push(w(i));\n');document.write('            }\n');document.write('        }\n');document.write('        for (i = 0; i < 64; i++) {\n');document.write('            e[v[i]] = i;\n');document.write('        }\n');document.write('\n');document.write('        for (i = 0; i < s.length; i += 72) {\n');document.write('            var b = 0, c, x, l = 0, o = s.substring(i, i + 72);\n');document.write('            for (x = 0; x < o.length; x++) {\n');document.write('                c = e[o.charAt(x)];\n');document.write('                b = (b << 6) + c;\n');document.write('                l += 6;\n');document.write('                while (l >= 8) {\n');document.write('                    r += w((b >>> (l -= 8)) % 256);\n');document.write('                }\n');document.write('            }\n');document.write('        }\n');document.write('        mi24logger.log("mi24func.decodeBase64:" + r);\n');document.write('        return r;\n');document.write('    };\n');document.write('\n');document.write('    /*\n');document.write('     * @does execute jsscript, loop until given objects are loaded\n');document.write('     * @input String objs (space separated objectnames) ,  String jsscript (executable js)\n');document.write('     */\n');document.write('    this.executeIfPresent = function (objs, jsscript) {\n');document.write('\n');document.write('        isloaded = true;\n');document.write('        idletime = 100;\n');document.write('        maxIterations = 50;\n');document.write('\n');document.write('        if (typeof objs == "string") {\n');document.write('            // remove multiple blanks\n');document.write('            objStr = objs.replace(/\\s{2,}/g, " ");\n');document.write('            // remove trailing, leading blank\n');document.write('            objStr = objStr.replace(/^\\s+|\\s+$/g, "");\n');document.write('            objs = objStr.split(" ");\n');document.write('            objs.str = objStr;\n');document.write('            objs.it = 0;\n');document.write('        }\n');document.write('\n');document.write('        if (objs.it > maxIterations) {\n');document.write('            mi24logger.log("[" + objStr + "]" + " is absent, max iterations reached");\n');document.write('            return false;\n');document.write('        }\n');document.write('\n');document.write('        for (var i = 0; i < objs.length; i++) {\n');document.write('            try {\n');document.write('                eval(objs[i]);\n');document.write('                //eval(obj);\n');document.write('                if (typeof eval(objs[i]) != "undefined") {\n');document.write('                    isloaded = isloaded && true;\n');document.write('                }\n');document.write('                else {\n');document.write('                    isloaded = isloaded && false;\n');document.write('                }\n');document.write('\n');document.write('            } catch (e) {\n');document.write('                isloaded = false;\n');document.write('            }\n');document.write('        }\n');document.write('        if (!isloaded) {\n');document.write('            window.setTimeout(function () {\n');document.write('                objs.it++;\n');document.write('                //mi24logger.log(objs.it);\n');document.write('                mi24func.executeIfPresent(objs, jsscript);\n');document.write('            }, idletime);\n');document.write('        } else {\n');document.write('            if (objs.it > 0) {\n');document.write('                mi24logger.log("[" + objs.str + "]" + " is present " + (objs.it > 0 ? "(loops:" + objs.it : "") + " time:" + objs.it * idletime + " msec)");\n');document.write('            } else {\n');document.write('                mi24logger.log("[" + objs.str + "]" + " is present ");\n');document.write('            }\n');document.write('            try {\n');document.write('                eval(jsscript);\n');document.write('            } catch (e) {\n');document.write('                mi24logger.log(e);\n');document.write('                return false;\n');document.write('            }\n');document.write('            return true;\n');document.write('        }\n');document.write('\n');document.write('    };\n');document.write('\n');document.write('    this.showPlayerDo = function (id) {\n');document.write('        var hasFlash = false;\n');document.write('        var hasHtml5 = false;\n');document.write('        try {\n');document.write('            hasFlash = Boolean(new ActiveXObject(\'ShockwaveFlash.ShockwaveFlash\'));\n');document.write('        } catch(exception) {\n');document.write('            if (\n');document.write('                \'undefined\' != typeof navigator.mimeTypes[\'application/x-shockwave-flash\'] &&\n');document.write('                navigator.mimeTypes[\'application/x-shockwave-flash\'].enabledPlugin != null\n');document.write('            )\n');document.write('            {\n');document.write('                hasFlash = true;\n');document.write('            }\n');document.write('        }\n');document.write('\n');document.write('        if (hasFlash == false) {\n');document.write('            if (!document.createElement(\'video\').canPlayType) {\n');document.write('                if (jQuery(\'.mi24wmv_\' + id).length == 0) {\n');document.write('                    alert("Flash plugin is not installed.");\n');document.write('                    hasFlash = true;\n');document.write('                }\n');document.write('            } else {\n');document.write('                hasHtml5 = true\n');document.write('            }\n');document.write('        }\n');document.write('\n');document.write('        if (hasFlash) {\n');document.write('            jQuery(\'.mi24html5_\' + id).remove();\n');document.write('            jQuery(\'.mi24wmv_\' + id).remove();\n');document.write('            jQuery(\'.mi24flash_\' + id).css(\'visibility\', \'visible\');\n');document.write('            window.setTimeout(function() {\n');document.write('                mi24func.executeIfPresent("mi24playerClazz",eval("mi24Initialize_flash_"+id+"()"));\n');document.write('            }, 800);\n');document.write('        } else if (hasHtml5) {\n');document.write('            jQuery(\'.mi24flash_\' + id).remove();\n');document.write('            jQuery(\'.mi24wmv_\' + id).remove();\n');document.write('            jQuery(\'.mi24html5_\' + id).show();\n');document.write('            window.setTimeout(function() {\n');document.write('                mi24func.executeIfPresent("mi24playerClazz",eval("mi24Initialize_html5_"+id+"()"));\n');document.write('            }, 800);\n');document.write('        } else {\n');document.write('            jQuery(\'.mi24flash_\' + id).remove();\n');document.write('            jQuery(\'.mi24html5_\' + id).remove();\n');document.write('            jQuery(\'.mi24wmv_\' + id).show();\n');document.write('        }\n');document.write('    }\n');document.write('}\n');document.write('\n');document.write('//var mi24func = new mi24funcClazz();\n');document.write('var mi24func = new mi24func();\n');document.write('\n');document.write('\n');document.write('//mi24loggerClazz = function() {\n');document.write('function mi24logger() {\n');document.write('\n');document.write('    var domainPattern = ["(dev\\.edge-cdn\\.net)", "(test\\.local)", "(develop-edge)", "(vm6\\.ja\\.mi24)"];\n');document.write('    //var domainPattern = ["(dev\\.edge-cdn\\.net)","(jt\\.mi24\\.tv)", "(localhost)", "(develop-edge)", "(vm6\\.jt\\.mi24)"];\n');document.write('    var domainPatternStr = "";\n');document.write('    var regex;\n');document.write('    var logEnabled;\n');document.write('    var errorEnabled;\n');document.write('\n');document.write('\n');document.write('    this.addDomainPattern = function (pattern) {\n');document.write('        domainPattern.push("(" + pattern + ")");\n');document.write('        mi24logger.log("mi24logger domain pattern: " + mi24logger.getDomainPattern());\n');document.write('        this.compileDomainRegEx();\n');document.write('    };\n');document.write('    this.compileDomainRegEx = function () {\n');document.write('        domainPatternStr = "";\n');document.write('        for (var i = 0; i < domainPattern.length; i++) {\n');document.write('            domainPatternStr += (i == 0 ? "" : "|") + domainPattern[i];\n');document.write('        }\n');document.write('        regex = new RegExp(domainPatternStr, "i");\n');document.write('        logEnabled = regex.test(document.domain);\n');document.write('        errorEnabled = logEnabled;\n');document.write('        return regex;\n');document.write('    };\n');document.write('    this.getDomainPattern = function () {\n');document.write('        return domainPatternStr;\n');document.write('    };\n');document.write('\n');document.write('    this.logAll = function () {\n');document.write('        excludePatternStr = "";\n');document.write('        logEnabled = true;\n');document.write('    };\n');document.write('    this.logEnable = function () {\n');document.write('        logEnabled = true;\n');document.write('    };\n');document.write('    this.logDisable = function () {\n');document.write('        logEnabled = false;\n');document.write('    };\n');document.write('    this.errorEnable = function () {\n');document.write('        errorEnabled = true;\n');document.write('    };\n');document.write('    this.errorDisable = function () {\n');document.write('        errorEnabled = false;\n');document.write('    };\n');document.write('\n');document.write('    /*\n');document.write('     *\n');document.write('     * @param {type} tolog\n');document.write('     * @returns {undefined}\n');document.write('     * @does log ouput   (mi24logger.log(<obj/string>))\n');document.write('     */\n');document.write('    this.log = function (tolog) {\n');document.write('        if (logEnabled) {\n');document.write('            try {\n');document.write('                console.log(tolog);\n');document.write('            } catch (e) {\n');document.write('                alert(tolog);\n');document.write('            }\n');document.write('        }\n');document.write('    };\n');document.write('\n');document.write('    /*\n');document.write('     *\n');document.write('     * @param {type} tolog\n');document.write('     * @returns {undefined}\n');document.write('     * @does log error   (mi24logger.error(<obj/string>))\n');document.write('     */\n');document.write('    this.error = function (tolog) {\n');document.write('        if (errorEnabled) {\n');document.write('            try {\n');document.write('                console.log("ERROR: " + tolog);\n');document.write('            } catch (e) {\n');document.write('                alert("ERROR: " + tolog);\n');document.write('            }\n');document.write('        }\n');document.write('    }\n');document.write('}\n');document.write('\n');document.write('//var mi24logger = new mi24loggerClazz();\n');document.write('var mi24logger = new mi24logger();\n');document.write('mi24logger.compileDomainRegEx();\n');document.write('mi24logger.log("mi24logger domain pattern: " + mi24logger.getDomainPattern());\n');document.write('</script>\n');document.write('\n');document.write('<script>\n');document.write('\n');document.write('</script>\n');document.write('\n');document.write('                \n');document.write('<script>\n');document.write('\n');document.write('                    if (typeof SWFObject == "undefined") {\n');document.write('                        mi24func.load("https://dl.edge-cdn.net/flashplayer/swfobject.js","js");\n');document.write('                        //load("https://dl.edge-cdn.net/flashplayer/swfobject.js","js");\n');document.write('                    } else {\n');document.write('                        var testSWF = new SWFObject();\n');document.write('                        if(typeof testSWF.attributes.useExpressInstall == "undefined") {\n');document.write('                            mi24func.load("https://dl.edge-cdn.net/flashplayer/swfobject.js","js");\n');document.write('                        }\n');document.write('                    }\n');document.write('                    if (typeof mi24flashtools == "undefined") {\n');document.write('                        mi24func.load("https://dl.edge-cdn.net/javascript/mi24/src/mi24flashtools.js","js");\n');document.write('                        //load("https://dl.edge-cdn.net/javascript/mi24/src/mi24flashtools.js","js");\n');document.write('                    }\n');document.write('                </script>\n');document.write('\n');document.write('                    \n');document.write('            \n');document.write('                    \n');document.write('<script>\n');document.write('\n');document.write('                    if (typeof mi24Clazz == \'undefined\') {\n');document.write('                        mi24func.load("https://dl.edge-cdn.net/javascript/mi24/src/mi24.js","js");\n');document.write('                    }\n');document.write('                    </script>\n');document.write('\n');document.write('                    \n');document.write('<script>\n');document.write('\n');document.write('                        if (typeof jQuery == "undefined") {\n');document.write('                            mi24func.load("https://dl.edge-cdn.net/external/jqueryui/js/jquery-1.8.2.min.js","js");\n');document.write('                            mi24func.executeIfPresent("jQuery","$.noConflict();jQuery(\'img\').on(\'resize\', function() {console.log(\'change\');});");\n');document.write('                        }\n');document.write('                    </script>\n');document.write('\n');document.write('<script>\n');document.write('\n');document.write('                    if (typeof mi24playerClazz == "undefined") {\n');document.write('                        mi24func.load("https://dl.edge-cdn.net/javascript/mi24/src/mi24player.js","js");\n');document.write('                    }\n');document.write('                    </script>\n');document.write('\n');document.write('            \n');document.write('<script>\n');document.write('\n');document.write('            if (typeof mi24responsiveClazz == "undefined") {\n');document.write('                mi24func.load("https://dl.edge-cdn.net/javascript/mi24/src/mi24responsive.js","js");\n');document.write('            }\n');document.write('            </script>\n');document.write('<link rel=\'stylesheet\' type=\'text/css\' href=\'https://dl.edge-cdn.net/css/mi24responsive.css\'>\n');document.write('<script>\n');document.write('var activeAnalyticsPlugins = ["Akamai_0_1"];\n');document.write('var AKAMAI_MEDIA_ANALYTICS_CONFIG_FILE_PATH = "https://ma307-r.analytics.edgekey.net/config/beacon-15971.xml";\n');document.write('var analytics_view_tracking_api_url = "//ca.video-cdn.net/event";\n');document.write('var analytics_uuid = "EyD2Xr8yMihCjiGU3bvwtx";\n');document.write('mi24func.load("https://dl.edge-cdn.net/javascript/mi24/analytics/Mi24Analytics.js","js");\n');document.write('mi24func.load("https://dl.edge-cdn.net/javascript/mi24/analytics/Mi24Analytics.Akamai_0_1.js","js");\n');document.write('</script>\n');document.write('<div id=\'responsivediv_1300803\' style=\'position:relative;padding-bottom: 0px;padding-top:0px;overflow: hidden;\'>\n');document.write('\n');document.write('<script>\n');document.write('function addResizeEvent(callback)\n');document.write('{\n');document.write('    if (window.addEventListener)\n');document.write('        window.addEventListener(\'resize\', callback, false);\n');document.write('    else if (window.attachEvent)\n');document.write('        window.attachEvent(\'onresize\', callback);\n');document.write('}\n');document.write('                                    mi24func.executeIfPresent(\'mi24responsiveClazz\',\'mi24responsive_1300803 = new mi24responsiveClazz("1300803","flashv3");mi24responsive_1300803.init(16/9, 25); addResizeEvent( function() {   mi24responsive_1300803.setHeight(16/9, 25);})\');\n');document.write('                                    </script>\n');document.write('\n');document.write('                                   <div class="v2_videoplayback_player" itemprop="video" itemscope itemtype="http://schema.org/VideoObject">    \n');document.write('<script>\n');document.write('                                            var mi24player_1300803;\n');document.write(' if ( typeof mi24PlayerObjs == "undefined" )\n');document.write('{ var mi24PlayerObjs = new Array(); } \n');document.write('function mi24Initialize_flash_1300803() {        mi24player_1300803 = new mi24playerClazz("1300803","flashv3");\n');document.write('                                            mi24player_1300803.init("mainjvideo_1300803"); window.mi24PlayerObjs.push( mi24player_1300803 ); \n');document.write('mi24func.executeIfPresent(\'mi24player_1300803\', \'mi24player_1300803.videoDetail = {};mi24player_1300803.videoDetail = {"flvUrl":"https:\\/\\/hd.cdn.edge-cdn.net\\/videodb\\/3716\\/videodb_3716_75570_11665821_16x9_mq.mp4","length":"178","title":"BM_Lehmpfuhl_Edit_4","autoplay":0};attachMi24Analytics("mi24player_1300803");\');    mi24player_1300803.isResponsive = true;\n');document.write('                                                /* for single api implementations, clone the first mi24player object */\n');document.write('                                                if(typeof mi24player != "object") {\n');document.write('                                                    mi24player = mi24player_1300803;\n');document.write('\n');document.write('                                                }\n');document.write('\n');document.write('                                            }\n');document.write('                                             window.setTimeout(function() {\n');document.write('                                                mi24func.executeIfPresent("mi24playerClazz","mi24Initialize_1300803()");\n');document.write('                                            }, 800);\n');document.write('\n');document.write('                                            </script>\n');document.write('<div class=\'v2_playericons\'>\n');document.write('</div>\n');document.write('<meta itemprop=\'thumbnailUrl\' content=\'https://dl.edge-cdn.net/videothumbs/8/4b/d8/videodb_3716_75570_11665821_16x9/videodb_3716_75570_11665821_16x9_07_MQ.jpg\'/>\n');document.write('<meta itemprop=\'embedURL\' content=\'\'/>\n');document.write('<meta itemprop=\'width\' content=\'512\'/>\n');document.write('<meta itemprop=\'height\' content=\'313\'/>\n');document.write('<div  style=\'\'><div id=\'bgblankexfashcontent1300803X512X313X1579013292X940\' class=\'flashdiv\' style=\'height: 0;\'></div>\n');document.write('<div id=\'bgexfashcontent1300803X512X313X1579013292X940\' style=\'z-index:1;position:absolute;left:0px;top:0px;width:100%;height:100%;background-color:#000000;margin: 0px;padding: 0px;border:0px none;\'>\n');document.write('</div>\n');document.write('<div id="exfashcontent1300803X512X313X1579013292X940" style=\'z-index:2;position:absolute;left:0px;top:0px;width:100%;height:100%;margin: 0px;padding: 0px;border:0px none;\'>.<noscript style=\'color:#ffff00;\'><br>Hier erscheint die Video-Wiedergabe (benötigt JavaScript und Adobe Flash Player ab Version 8.0)!<br><br>Sie haben entweder Javascript deaktiviert oder nicht die aktuelle Adobe Flash-Player-Version installiert.</noscript></div>\n');document.write('</div>\n');document.write('<script type="text/javascript">\n');document.write('var isPlayerReady_1300803 = true;\n');document.write('var PlayerLoaded_1300803 = false;\n');document.write('var stopvideoonload_1300803 = false;\n');document.write('var stopvideoonloadstatus_1300803 = false;\n');document.write('var playingok_1300803 = false;\n');document.write('var autoplaystatus_1300803 = -1;\n');document.write('function fp_stop_1300803() {\n');document.write('stopvideoonload_1300803 = true;\n');document.write('}\n');document.write('function flashPlayerStatusEvent_1300803(status_) {\n');document.write('   if (typeof mi24player_1300803 != "undefined") {\n');document.write('       mi24player_1300803.flashPlayerStatusEvent(status_);\n');document.write('   }\n');document.write('} //flashPlayerStatusEvent \n');document.write('</script>\n');document.write('<script type="text/javascript">\n');document.write('var x_f73f0da54ba58877ca2052931688df97timerid= new Array();\n');document.write('if (typeof mi24players == "undefined") { var mi24players=1;}\n');document.write('function r_1300803_123c19983f96fb8630a46eb80115f235replacetext(text){\n');document.write('var tmp_text;\n');document.write(' if (document.getElementById("videoplayback_titlebar_1300803")){\n');document.write('tmp_text=text;\n');document.write('if (tmp_text.length > 59) {\n');document.write('tmp_text=tmp_text.substr(0,56)+"...";\n');document.write(' }\n');document.write('document.getElementById("videoplayback_titlebar_1300803").innerHTML=tmp_text;\n');document.write(' }\n');document.write('}\n');document.write('function x_f73f0da54ba58877ca2052931688df97loadloadimg(){\n');document.write('if (document.getElementById("bgexfashcontent1300803X512X313X1579013292X940")) { document.getElementById("bgexfashcontent1300803X512X313X1579013292X940").innerHTML=\'<center><img id="fallbackImage1300803" border=0 src="https://dl.edge-cdn.net/videothumbs/8/4b/d8/videodb_3716_75570_11665821_16x9/videodb_3716_75570_11665821_16x9_07_MQ.jpg" style="margin: 0;padding: 0;border:0 none; width:100%;"></center>\';}}\n');document.write('function x_f73f0da54ba58877ca2052931688df97loadblank(){\n');document.write('if (document.getElementById("bgblankexfashcontent1300803X512X313X1579013292X940")) { document.getElementById("bgblankexfashcontent1300803X512X313X1579013292X940").innerHTML="<img border=\'0\' src=\'https://dl.edge-cdn.net/images/blank.gif\' width=\'1\' height=\'1\'>";}\n');document.write('}\n');document.write('function x_f73f0da54ba58877ca2052931688df97noflash(){\n');document.write('if ((typeof thisMovie("mainjvideo_1300803") == "undefined") || (thisMovie("mainjvideo_1300803") == null)) {\n');document.write('if (!document.getElementById("exfashcontent1300803X512X313X1579013292X940")) { return;}\n');document.write('if (!document.getElementById("bgexfashcontent1300803X512X313X1579013292X940")) { return;}\n');document.write('if (document.getElementById("exfashcontent1300803X512X313X1579013292X940").innerHTML.substr(0,1) == ".") {\n');document.write('if (document.getElementById("exfashcontent1300803X512X313X1579013292X940")) { document.getElementById("exfashcontent1300803X512X313X1579013292X940").innerHTML="<div style=\'width:512px;height:288px;position:relative;\'><div style=\'border:solid 3px #333333;position:absolute;left:176px;top:123px;height:41px;width:160px;\'><a href=\'http://www.adobe.com/go/getflashplayer\' target=\'_blank\' border=\'0\'><img border=0 src=\'//dl.edge-cdn.net/images/160x41_Get_Flash_Player.jpg\'></a></div></div>";}\n');document.write('if (document.getElementById("bgexfashcontent1300803X512X313X1579013292X940")) { document.getElementById("bgexfashcontent1300803X512X313X1579013292X940").style.opacity="0.3";}\n');document.write('if (document.getElementById("bgexfashcontent1300803X512X313X1579013292X940")) { document.getElementById("bgexfashcontent1300803X512X313X1579013292X940").style.filter="alpha(opacity=30)";}\n');document.write('if (document.getElementById("bgexfashcontent1300803X512X313X1579013292X940")) { document.getElementById("bgexfashcontent1300803X512X313X1579013292X940").style.MozOpacity="0.3";}\n');document.write('}}}\n');document.write('\n');document.write('                                    /* init the flash player */\n');document.write('\n');document.write('                                    var initFlashPlayer_1300803 = function() { \n');document.write('\n');document.write('                                     so = new SWFObject("https://dl.edge-cdn.net/flashplayer/playerv3.swf", "mainjvideo_1300803", \'100%\', \'100%\', "8", "#000000");\n');document.write('var flashplayer = "";\n');document.write('\n');document.write('\n');document.write('                        mi24flashtools.detectOldVersion(flashplayer);\n');document.write('if(mi24flashtools.getAvailableVersion() == 0)\n');document.write('{\n');document.write('}\n');document.write('else if(mi24flashtools.isOldVersion() && flashplayer == "v2")\n');document.write('{\n');document.write('alert("Flash version 9 or above is required.");\n');document.write('}\n');document.write('else if(mi24flashtools.isOldVersion() && flashplayer != "v2")\n');document.write('{\n');document.write('alert("Mindestens Flash Version 10.1 erforderlich.");\n');document.write('}\n');document.write('so.useExpressInstall("https://dl.edge-cdn.net/flashplayer/expressinstall.swf");\n');document.write('  so.addVariable("allowScriptAccess", "always");if (stopvideoonload_1300803) {\n');document.write('  so.addVariable("autoStart","0");\n');document.write('  autoplaystatus_1300803 = 0;\n');document.write('}\n');document.write('else\n');document.write('{\n');document.write('  so.addVariable("autoStart","false");\n');document.write('  autoplaystatus_1300803 = false;\n');document.write('}\n');document.write('so.addVariable("config_playerObjectID","mainjvideo_1300803");\n');document.write('so.addVariable("config_url","https%3A%2F%2Fdl.edge-cdn.net%2Fvideoxmls%2Fx%2F5%2F25%2Fab%2F%2F0%2FskinXML%2F313.288.512.0.0%2F0%2F8004cb11f53d03d3f58d9082b21cdde5dZFNUoQwEIXvkr1TCQRmDCtdeI2pABlMGRJMGkfL4u52AlFKx6zo73Xz-keKUnwGcRIkvGjbS5CkkaKOrBZEj8PZOtJowYsmkffR3CAQImGcc8YqSitUuCBG2oHgZyGIsmTN7pxxPkSP--hRIYGuZZX%2FXt6SS8Gm1D8J5SbQGnR13wn8E2o-amQdCdUm_CU3k6o_xOOfzxwkna4RS_Dr0aXtNPOWfDOpHkZ3xbdgj0HcFNcGcUqRlf25sw8qrTI5jvxdZZmh7pnOYHyIdfGu80taDAqI2w-gPSQYzzEqOycQ-xxX%2FXZ0Q3FK0uIRshCEb3ymeA_wQ9_sRo289egnY2oxKbm9pdXw_94wywJtBmWdZBvZpc0OD8B1l7K48sHQDrg00XZmh_vV4Pqh_UXdfbg1U4zPIF.xml,https%3A%2F%2Fdl.edge-cdn.net%2Fvideoxmls%2Fx%2F6%2F95%2Fa0%2F1300803%2FvideoSrcXML%2F313.288.512.46.1569572667%2F3_1f5e8c06a2ee12ba28464989374c4540%2Fe1833af116193561f50499f3d84686f4RVLN0tsgDHwX7vUgE_xDbj333KsHg2wztSEFEn_fdPLuBRwnBzOSWMm7i6Roxb8guCDqIX0gVylYLkCqSP3zHqOzv00w44rkWnCTXEOJgQmiTbit8ntBMy-RXI2ouy5d9an5j9yk-eXmDO1T4WH0AIX%2FXzSjrLh_okrPmo5cl0jH2tGK8b4hdMOhoRH5xOQtdAMKg5Q08HjhB794kIc9n2vRvQR17BJayudWD0LRXdKAShaakEyS_Qag5lt5nmpE60maxyj5blCsyQQJCxuV4u8RfRnOfX_1TlhL8wxbTc6LrnMX%2FXIU_7_OZjBwN2uJYubLEigdCSw6NpfRwNOe_O7gfL6UWQ1c0uDwHe1-2B8HhzN7Xpgkij_NtSqJmCvu_Y1DfT2DWMykuDY0cB-FQznjvSgw2TKvKbbFVmbF1yGnfl7jaeehMu2Km8cbIo-4x6xh9K28X%2FXpifO3B17ZaVzCCFMZATwWb0-9tWWVYctymmdEPUq2vHTOivR4fwPtgx_F8_gc%252C.xml");\n');document.write('so.addVariable("config_javascriptEvents","true");\n');document.write('so.addParam("wmode","transparent");\n');document.write('so.addParam("allowFullScreen","true");\n');document.write('so.addParam("allowScriptAccess","always");\n');document.write('so.addParam("scale","noscale");\n');document.write('so.addParam("salign","LT");\n');document.write('so.addVariable("playerID",mi24players++);\n');document.write('so.write("exfashcontent1300803X512X313X1579013292X940");\n');document.write('PlayerLoaded_1300803=true;\n');document.write('x_f73f0da54ba58877ca2052931688df97timerid["x_f73f0da54ba58877ca2052931688df97noflash"] = setTimeout("if (typeof x_f73f0da54ba58877ca2052931688df97noflash == \'function\') {x_f73f0da54ba58877ca2052931688df97noflash();}",5500);\n');document.write('}; /*initFlashPlayer*/ \n');document.write('\n');document.write('                                   // ftf ie8\n');document.write('                                   try{\n');document.write('                                      if (mi24func.executeIfPresent("SWFObject mi24flashtools","initFlashPlayer_1300803()") === false) {\n');document.write('                                        mi24func.executeIfPresent("SWFObject mi24flashtools",initFlashPlayer_1300803());\n');document.write('                                      };\n');document.write('                                   } catch(e) {}\n');document.write('                                      \n');document.write('x_f73f0da54ba58877ca2052931688df97timerid["x_f73f0da54ba58877ca2052931688df97loadloadimg"] = setTimeout("if (typeof x_f73f0da54ba58877ca2052931688df97loadloadimg == \'function\') {x_f73f0da54ba58877ca2052931688df97loadloadimg();}",4000);\n');document.write('x_f73f0da54ba58877ca2052931688df97timerid["x_f73f0da54ba58877ca2052931688df97loadloadblank1"] = setTimeout("if (typeof x_f73f0da54ba58877ca2052931688df97loadblank == \'function\') {x_f73f0da54ba58877ca2052931688df97loadblank();}",3000);\n');document.write('x_f73f0da54ba58877ca2052931688df97timerid["x_f73f0da54ba58877ca2052931688df97loadloadblank1"] = setTimeout("if (typeof x_f73f0da54ba58877ca2052931688df97loadblank == \'function\') {x_f73f0da54ba58877ca2052931688df97loadblank();}",6000);\n');document.write('x_f73f0da54ba58877ca2052931688df97timerid["x_f73f0da54ba58877ca2052931688df97loadloadblank1"] = setTimeout("if (typeof x_f73f0da54ba58877ca2052931688df97loadblank == \'function\') {x_f73f0da54ba58877ca2052931688df97loadblank();}",9000);\n');document.write('</script>\n');document.write('\n');document.write('</div>\n');document.write('</div></div>\n');document.write('<div id=\'vid2_videoplaybackframe_1300803\' class=\'exflashclass1300803 mi24html5_1300803\' style=\'display:none;\'>\n');document.write('\n');document.write('        \n');document.write('<script>\n');document.write('\n');document.write('            if (typeof mi24configClazz == \'undefined\') {\n');document.write('                mi24func.load("https://dl.edge-cdn.net/javascript/mi24/src/mi24config.js","js");\n');document.write('            }\n');document.write('        </script>\n');document.write('\n');document.write('<script>\n');document.write('if (typeof mi24playerClazz == "undefined") {\n');document.write('                mi24func.executeIfPresent(\'mi24\',\'mi24.setPlayerVersion(" 2.3.2.3")\');\n');document.write('                    mi24func.executeIfPresent(\'mi24\',\'mi24.setPlayerActivationDate("17/06/2013")\');\n');document.write('                    mi24func.executeIfPresent(\'mi24\',\'mi24.addFeature("html5RC1")\');    mi24func.executeIfPresent(\'mi24\',\'mi24.addExpectedFeature("html5RC1")\');\n');document.write('                }\n');document.write('                </script>\n');document.write('<div id=\'responsivediv_1300803\' style=\'position:relative;padding-bottom: 56.4%;padding-top:0px;height:0;overflow: hidden;\'>\n');document.write('  <div class="v2_videoplayback_player" itemprop="video" itemscope itemtype="http://schema.org/VideoObject"><div class=\'v2_playericons\'></div>\n');document.write('\n');document.write('                   <div><!-- fix for missing closing div in html5 -->\n');document.write('<div  style=\'width:100%;height:100%;margin: 0px;padding: 0px;border:0px none;\'><div id=\'bgblankexfashcontent1300803X512X313X1579013292X940\' style=\'z-index:0;position:absolute;left:0px;top:0px;width:1px;height:1px;overflow:hidden;background-color:#000000;margin: 0px;padding: 0px;border:0px none;\'>\n');document.write('\n');document.write('                        </div>\n');document.write('    <div style=\'z-index:0;background-color:#fff;position:absolute;left:0px;top:0px;width:100%;height:100%;background-color:#000000;margin: 0px;padding: 0px;border:0px none;\'>&nbsp;</div>\n');document.write('<div id=\'mi24thumb_1300803\' style=\'z-index:100;position:absolute;left:0px;top:0px;width:100%;height:100%; text-align: center; background-color:#000000;margin: 0px;padding: 0px;border:0px none;\'><span style="display: inline-block; height: 100%; vertical-align: middle;"></span><img border=0 src="https://dl.edge-cdn.net/videothumbs/8/4b/d8/videodb_3716_75570_11665821_16x9/videodb_3716_75570_11665821_16x9_07_MQ.jpg"width="100%" style="vertical-align: middle; display:inline"></div><div id="mi24play_1300803" style="width:100%;height:100%;position:absolute;top:0;left:0;z-index:101;">\n');document.write('                            <div id="mi24playbutton_1300803" style="cursor:pointer;position:relative;"></div>\n');document.write('                        </div><div id="exfashcontent1300803X512X313X1579013292X940" style=\'z-index:2;position:absolute;left:0px;top:0px;width:100%;height:100%;margin: 0px;padding: 0px;border:0px none;\'>\n');document.write('<div id=\'mainjvideo5div_1300803\' style=\'position: relative; width:100%; height:100%;\'>\n');document.write(' <video controlslist=\'nodownload\'  id=\'mainjvideo5_1300803\' heigth=100% width=100% style=\'width:100%;height:100%; position:absolute;\'         poster=\'https://dl.edge-cdn.net/videothumbs/8/4b/d8/videodb_3716_75570_11665821_16x9/videodb_3716_75570_11665821_16x9_07_MQ.jpg\'    preload="none"         controls >\n');document.write('<source src=\'https://edgecdnhd2-vh.akamaihd.net/i/videodb/3716/videodb_3716_75570_11665821_16x9_,fh,hd,lq,hp,mq,hq,.mp4.csmil/master.m3u8?set-cc-attribute=cc\' type=\'application/vnd.apple.mpegurl\'>\n');document.write('<source src=\'https://download-tls-cdn.edge-cdn.net/videodb/3716/videodb_3716_75570_11665821_16x9_mq.mp4\' type=\'video/mp4\'>\n');document.write('<source src=\'https://media-cdn.edge-cdn.net/zvts/1576539906/videos/videodb/3716/videodb_3716_75570_11665821_16x9_mq.webm\' type=\'video/webm\'>\n');document.write('<source src=\'https://media-cdn.edge-cdn.net/zvts/1576539923/mediastr/videodb/3716/videodb_3716_75570_11665821_16x9.ogv\' type=\'video/ogg\'>\n');document.write('</video>\n');document.write('</div></div> <!--mainjvideo5div-->\n');document.write('\n');document.write('<script>\n');document.write('\n');document.write('                        var mi24player_1300803;\n');document.write('                        var mi24config_1300803;\n');document.write(' if ( typeof mi24PlayerObjs == "undefined" ){ var mi24PlayerObjs = new Array(); } function mi24Initialize_html5_1300803() {\n');document.write('\n');document.write('                          try {\n');document.write('\n');document.write('                                mi24player_1300803 = new mi24playerClazz("1300803","html5","3716");\n');document.write('                                mi24player_1300803.videoNode = document.getElementById(\'mainjvideo5_1300803\');\n');document.write('                                mi24player_1300803.thumbNode = document.getElementById(\'mi24thumb_1300803\');\n');document.write('                                mi24player_1300803.playbtnNode = document.getElementById(\'mi24play_1300803\');\n');document.write('                                mi24player_1300803.playNode = document.getElementById(\'mi24play_1300803\');\n');document.write('                                window.mi24PlayerObjs.push( mi24player_1300803 );     mi24player_1300803.isResponsive = true;\n');document.write('                                mi24config_1300803 = new mi24configClazz("1300803");\n');document.write('                                mi24player_1300803.setPlayerDimXY("512 288");\n');document.write('                                mi24config_1300803.init(\'https%3A%2F%2Fdl.edge-cdn.net%2Fvideoxmls%2Fx%2F7%2F2a%2Fa1%2F%2F0%2FskinXML%2F313.288.512.0.0%2F0%2F3af8005a3198213760ab225ed83e5cc3dZHdUoMwEIXfJfd2Egi0hiu98DU6AVLMGBJMFtFxeHc3ASyjba7Y7-xy9keKXHwHcRIkvGnbSpCkkqKMrBRE993ZOlJpwbMqkc_e3CAQImGcc8YKSgtUuCBG2o7gZyaIsmTJbpxxPkSPx-hRIIGmZqX%2FXt6SS8Gq5DdE_JVoDRrS74T-CqU_JRJuhOKVXhJbyeU94TjPw-cpO5u0Uv3p9E57bRxFrwzaV7G10XXYM8B3BBXRrGK0YV9ODP2Ki2y-k18H6XZoeZVDqB82Grj3cYaNBi1IWw-gPSwxXiIXtlxC7HHX%2FXq9EKotElbDYIgtGt8hvAP4LurzGatqOXoJ3dUI6tDfWuq6f2eQRYEmg1z8uYXg0uaHD-iyyd5UeW1o_1wab7MrSfpumg2k49NK09WIWjzD8%252C.xml\',\'https%3A%2F%2Fdl.edge-cdn.net%2Fvideoxmls%2Fx%2F6%2F95%2Fa0%2F1300803%2FvideoSrcXML%2F313.288.512.46.1569572667%2F3_1f5e8c06a2ee12ba28464989374c4540%2Fad37d3b03fe131c5c396215c43b94a5cRVLBkpwgEP0X7rFAZFTmlvMeUruVXC2EVqkgGGDGpLbm3wM47hxEuvt10-91C97yz8AZR_IufEBXwZvsIMkj1PdbjM7-0kGPBtC14CZhQrkTypHSYTPi3wJ6XiK6al53XQr1Kfm3WIV-c3OB4gtHd6X%2FX0GQjHuMB1ur3vFRiVGpmpgY01xRSlrGO7IkPDgfALSllwGGQdS4_PnYQIPfnEhDvu-VyP4CCaswtpKHd2lHqabMR_SA9gfqUnwP9_fcghzhK6PQsadpAkprGuOtgJVEPRsM6OmTimXrMYYLcsenMsTX%2FXjsLidrmILYI_3Sn_j8oGfWKOartWccluRnK11zMv4Sihh74pYItoCQQWHWpO5n4kZLs7s-80mw1Hxs0uFyGsr9sD4WFzm1xVQaRS_kt70vW9GpXqWjx1Yppq2VCo257QuhdMjDkjjXaYZKF_yVLljqX%2FX1LI4FdupuNJ9-EC3YqeieJ8iRAzfBNKltZiM-N-bsa6wqGI3qsw8lgdc9ppdASV8OCXrdj1dpUOvpBSJPnQ_mn5u31-Aj5OuhxPB7_AQ%252C%252C.xml\');\n');document.write('                                mi24player_1300803.init(mi24player_1300803.videoNode);\n');document.write('                                //mi24player_1300803.initAkamai();\n');document.write('                                mi24player_1300803.videoNode.addEventListener(\'play\', mi24player_1300803.html5PlayerStatusEvent, false);\n');document.write('                                mi24player_1300803.videoNode.addEventListener(\'play\', mi24player_1300803.html5PlayerOnPlayPressedStatusEvent, false);\n');document.write('                                mi24player_1300803.videoNode.addEventListener(\'onPlayPressed\', mi24player_1300803.html5PlayerStatusEvent, false);\n');document.write('                                mi24player_1300803.videoNode.addEventListener(\'pause\', mi24player_1300803.html5PlayerStatusEvent, false);\n');document.write('                                mi24player_1300803.videoNode.addEventListener(\'ended\', mi24player_1300803.html5PlayerStatusEvent, false);\n');document.write('                                mi24player_1300803.videoNode.addEventListener(\'timeupdate\', mi24player_1300803.html5PlayerStatusEvent, false);\n');document.write('                            mi24player_1300803.registerStatusFunction("ended","mi24config_1300803.showStartScreen()");\n');document.write('mi24player_1300803.registerStatusFunction("play","mi24config_1300803.showPlayer()");        mi24player_1300803.registerStatusFunction(\'timeupdate\',\'mi24player_1300803.processEvents(mi24player_1300803.getposition())\');\n');document.write('                   /* for single api implementations, clone the first mi24player object */\n');document.write('                   if(typeof mi24player != "object") {\n');document.write('                        mi24player = mi24player_1300803;\n');document.write('                   }  } catch(e) {mi24logger.log(e);}\n');document.write('                }\n');document.write('                    window.setTimeout(function() {\n');document.write('                        mi24func.executeIfPresent("jQuery",\'mi24func.showPlayerDo(1300803);\')\n');document.write('                        }, 800);\n');document.write('                    </script>\n');document.write('</div></div>\n');document.write('</div>\n');document.write('</div></div>\n');document.write('\n');