var mijsvcontent653763=''; mijsvcontent653763+='
\n'; mijsvcontent653763+='\n'; mijsvcontent653763+='\n'; mijsvcontent653763+='\n'; mijsvcontent653763+=' \n'; mijsvcontent653763+='\n'; mijsvcontent653763+=' \n'; mijsvcontent653763+=' \n'; mijsvcontent653763+=' \n'; mijsvcontent653763+='\n'; mijsvcontent653763+=' \n'; mijsvcontent653763+='\n'; mijsvcontent653763+='\n'; mijsvcontent653763+=' \n'; mijsvcontent653763+='\n'; mijsvcontent653763+='
\n'; mijsvcontent653763+='\n'; mijsvcontent653763+='\n'; mijsvcontent653763+='
\n'; mijsvcontent653763+='
\n'; mijsvcontent653763+='
\n'; mijsvcontent653763+='\n'; mijsvcontent653763+='\n'; mijsvcontent653763+='\n'; mijsvcontent653763+='\n'; mijsvcontent653763+='
\n'; mijsvcontent653763+='
\n'; mijsvcontent653763+='
\n'; mijsvcontent653763+='
.
\n'; mijsvcontent653763+='
\n'; mijsvcontent653763+='\n'; mijsvcontent653763+='
\n'; mijsvcontent653763+='
\n'; mijsvcontent653763+='
\n'; mijsvcontent653763+='\n'; mijsvcontent653763+=' \n'; mijsvcontent653763+='\n'; mijsvcontent653763+='
\n'; mijsvcontent653763+='
\n'; mijsvcontent653763+='\n'; mijsvcontent653763+='
\n'; mijsvcontent653763+='
\n'; mijsvcontent653763+='\n'; mijsvcontent653763+='
\n'; mijsvcontent653763+='
 
\n'; mijsvcontent653763+='
\n'; mijsvcontent653763+='
\n'; mijsvcontent653763+='
\n'; mijsvcontent653763+='
\n'; mijsvcontent653763+=' \n'; mijsvcontent653763+='
\n'; mijsvcontent653763+='\n'; mijsvcontent653763+='
\n'; mijsvcontent653763+='
\n'; mijsvcontent653763+='
\n'; mijsvcontent653763+='\n'; document.getElementById('mijsvdiv653763').innerHTML=mijsvcontent653763; /* * @does: log in test enviroment * @use: mi24logger.log(tolog) */ if (typeof window.docReady == 'undefined') { (function(funcName, baseObj) { // The public function name defaults to window.docReady // but you can pass in your own object and own function name and those will be used // if you want to put them in a different namespace funcName = funcName || "docReady"; baseObj = baseObj || window; var readyList = []; var readyFired = false; var readyEventHandlersInstalled = false; // call this when the document is ready // this function protects itself against being called more than once function ready() { if (!readyFired) { // this must be set to true before we start calling callbacks readyFired = true; for (var i = 0; i < readyList.length; i++) { // if a callback here happens to add new ready handlers, // the docReady() function will see that it already fired // and will schedule the callback to run right after // this event loop finishes so all handlers will still execute // in order and no new ones will be added to the readyList // while we are processing the list readyList[i].fn.call(window, readyList[i].ctx); } // allow any closures held by these functions to free readyList = []; } } function readyStateChange() { if ( document.readyState === "complete" ) { ready(); } } // This is the one public interface // docReady(fn, context); // the context argument is optional - if present, it will be passed // as an argument to the callback baseObj[funcName] = function(callback, context) { // if ready has already fired, then just schedule the callback // to fire asynchronously, but right away if (readyFired) { setTimeout(function() {callback(context);}, 1); return; } else { // add the function and context to the list readyList.push({fn: callback, ctx: context}); } // if document already ready to go, schedule the ready function to run if (document.readyState === "complete") { setTimeout(ready, 1); } else if (!readyEventHandlersInstalled) { // otherwise if we don't have event handlers installed, install them if (document.addEventListener) { // first choice is DOMContentLoaded event document.addEventListener("DOMContentLoaded", ready, false); // backup is window load event window.addEventListener("load", ready, false); } else { // must be IE document.attachEvent("onreadystatechange", readyStateChange); window.attachEvent("onload", ready); } readyEventHandlersInstalled = true; } } })("docReady", window); } //mi24funcClazz = function() { function mi24func() { /* * load Script mi24player.load("myscript.*", "css/js") */ this.load = function (fname, ftype) { if (ftype == "js") { var fref = document.createElement("script"); fref.setAttribute("type", "text/javascript"); fref.setAttribute("src", fname) } else if (type == "css") { var fref = document.createElement("link"); fref.setAttribute("rel", "stylesheet"); fref.setAttribute("type", "text/css"); fref.setAttribute("href", fname) } if (typeof fref != "undefined") { document.getElementsByTagName("head")[0].appendChild(fref); } }; // return fref; this.decodeBase64 = function (s) { var e = {}, i, k, v = [], r = "", w = String.fromCharCode; var n = [ [65, 91], [97, 123], [48, 58], [43, 44], [47, 48] ]; for (z in n) { for (i = n[z][0]; i < n[z][1]; i++) { v.push(w(i)); } } for (i = 0; i < 64; i++) { e[v[i]] = i; } for (i = 0; i < s.length; i += 72) { var b = 0, c, x, l = 0, o = s.substring(i, i + 72); for (x = 0; x < o.length; x++) { c = e[o.charAt(x)]; b = (b << 6) + c; l += 6; while (l >= 8) { r += w((b >>> (l -= 8)) % 256); } } } mi24logger.log("mi24func.decodeBase64:" + r); return r; }; /* * @does execute jsscript, loop until given objects are loaded * @input String objs (space separated objectnames) , String jsscript (executable js) */ this.executeIfPresent = function (objs, jsscript) { isloaded = true; idletime = 100; maxIterations = 50; if (typeof objs == "string") { // remove multiple blanks objStr = objs.replace(/\s{2,}/g, " "); // remove trailing, leading blank objStr = objStr.replace(/^\s+|\s+$/g, ""); objs = objStr.split(" "); objs.str = objStr; objs.it = 0; } if (objs.it > maxIterations) { mi24logger.log("[" + objStr + "]" + " is absent, max iterations reached"); return false; } for (var i = 0; i < objs.length; i++) { try { eval(objs[i]); //eval(obj); if (typeof eval(objs[i]) != "undefined") { isloaded = isloaded && true; } else { isloaded = isloaded && false; } } catch (e) { isloaded = false; } } if (!isloaded) { window.setTimeout(function () { objs.it++; //mi24logger.log(objs.it); mi24func.executeIfPresent(objs, jsscript); }, idletime); } else { if (objs.it > 0) { mi24logger.log("[" + objs.str + "]" + " is present " + (objs.it > 0 ? "(loops:" + objs.it : "") + " time:" + objs.it * idletime + " msec)"); } else { mi24logger.log("[" + objs.str + "]" + " is present "); } try { eval(jsscript); } catch (e) { mi24logger.log(e); return false; } return true; } }; this.showPlayerDo = function (id) { var hasFlash = false; var hasHtml5 = false; try { hasFlash = Boolean(new ActiveXObject('ShockwaveFlash.ShockwaveFlash')); } catch(exception) { if ( 'undefined' != typeof navigator.mimeTypes['application/x-shockwave-flash'] && navigator.mimeTypes['application/x-shockwave-flash'].enabledPlugin != null ) { hasFlash = true; } } if (hasFlash == false) { if (!document.createElement('video').canPlayType) { if (jQuery('.mi24wmv_' + id).length == 0) { alert("Flash plugin is not installed."); hasFlash = true; } } else { hasHtml5 = true } } if (hasFlash) { jQuery('.mi24html5_' + id).remove(); jQuery('.mi24wmv_' + id).remove(); jQuery('.mi24flash_' + id).css('visibility', 'visible'); window.setTimeout(function() { mi24func.executeIfPresent("mi24playerClazz",eval("mi24Initialize_flash_"+id+"()")); }, 800); } else if (hasHtml5) { jQuery('.mi24flash_' + id).remove(); jQuery('.mi24wmv_' + id).remove(); jQuery('.mi24html5_' + id).show(); window.setTimeout(function() { mi24func.executeIfPresent("mi24playerClazz",eval("mi24Initialize_html5_"+id+"()")); }, 800); } else { jQuery('.mi24flash_' + id).remove(); jQuery('.mi24html5_' + id).remove(); jQuery('.mi24wmv_' + id).show(); } } } //var mi24func = new mi24funcClazz(); var mi24func = new mi24func(); //mi24loggerClazz = function() { function mi24logger() { var domainPattern = ["(dev\.edge-cdn\.net)", "(test\.local)", "(develop-edge)", "(vm6\.ja\.mi24)"]; //var domainPattern = ["(dev\.edge-cdn\.net)","(jt\.mi24\.tv)", "(localhost)", "(develop-edge)", "(vm6\.jt\.mi24)"]; var domainPatternStr = ""; var regex; var logEnabled; var errorEnabled; this.addDomainPattern = function (pattern) { domainPattern.push("(" + pattern + ")"); mi24logger.log("mi24logger domain pattern: " + mi24logger.getDomainPattern()); this.compileDomainRegEx(); }; this.compileDomainRegEx = function () { domainPatternStr = ""; for (var i = 0; i < domainPattern.length; i++) { domainPatternStr += (i == 0 ? "" : "|") + domainPattern[i]; } regex = new RegExp(domainPatternStr, "i"); logEnabled = regex.test(document.domain); errorEnabled = logEnabled; return regex; }; this.getDomainPattern = function () { return domainPatternStr; }; this.logAll = function () { excludePatternStr = ""; logEnabled = true; }; this.logEnable = function () { logEnabled = true; }; this.logDisable = function () { logEnabled = false; }; this.errorEnable = function () { errorEnabled = true; }; this.errorDisable = function () { errorEnabled = false; }; /* * * @param {type} tolog * @returns {undefined} * @does log ouput (mi24logger.log()) */ this.log = function (tolog) { if (logEnabled) { try { console.log(tolog); } catch (e) { alert(tolog); } } }; /* * * @param {type} tolog * @returns {undefined} * @does log error (mi24logger.error()) */ this.error = function (tolog) { if (errorEnabled) { try { console.log("ERROR: " + tolog); } catch (e) { alert("ERROR: " + tolog); } } } } //var mi24logger = new mi24loggerClazz(); var mi24logger = new mi24logger(); mi24logger.compileDomainRegEx(); mi24logger.log("mi24logger domain pattern: " + mi24logger.getDomainPattern()); if (typeof SWFObject == "undefined") { mi24func.load("http://dl.edge-cdn.net/flashplayer/swfobjectcustom.js","js"); //load("http://dl.edge-cdn.net/flashplayer/swfobjectcustom.js","js"); } else { var testSWF = new SWFObject(); if(typeof testSWF.attributes.useExpressInstall == "undefined") { mi24func.load("http://dl.edge-cdn.net/flashplayer/swfobjectcustom.js","js"); } } if (typeof mi24flashtools == "undefined") { mi24func.load("http://dl.edge-cdn.net/javascript/mi24/src/mi24flashtools.js","js"); //load("http://dl.edge-cdn.net/javascript/mi24/src/mi24flashtools.js","js"); } if (typeof mi24Clazz == 'undefined') { mi24func.load("http://dl.edge-cdn.net/javascript/mi24/src/mi24.js","js"); } if (typeof jQuery == "undefined") { mi24func.load("http://dl.edge-cdn.net/external/jqueryui/js/jquery-1.8.2.min.js","js"); mi24func.executeIfPresent("jQuery","$.noConflict();jQuery('img').on('resize', function() {console.log('change');});"); } if (typeof mi24playerClazz == "undefined") { mi24func.load("http://dl.edge-cdn.net/javascript/mi24/src/mi24player.js","js"); } if (typeof mi24responsiveClazz == "undefined") { mi24func.load("http://dl.edge-cdn.net/javascript/mi24/src/mi24responsive.js","js"); } var activeAnalyticsPlugins = ["Akamai_0_1"]; var AKAMAI_MEDIA_ANALYTICS_CONFIG_FILE_PATH = "//ma1118-r.analytics.edgekey.net/config/beacon-8737.xml"; var analytics_view_tracking_api_url = "//ca.video-cdn.net/event"; var analytics_uuid = "EgyaTwDuARKfh6Y4KCzU9_"; mi24func.load("http://dl.edge-cdn.net/javascript/mi24/analytics/Mi24Analytics.js","js"); mi24func.load("http://dl.edge-cdn.net/javascript/mi24/analytics/Mi24Analytics.Akamai_0_1.js","js"); function addResizeEvent(callback) { if (window.addEventListener) window.addEventListener('resize', callback, false); else if (window.attachEvent) window.attachEvent('onresize', callback); } mi24func.executeIfPresent('mi24responsiveClazz','mi24responsive_653763 = new mi24responsiveClazz("653763","flashv3");mi24responsive_653763.init(16/9, 25); addResizeEvent( function() { mi24responsive_653763.setHeight(16/9, 25);})'); var mi24player_653763; if ( typeof mi24PlayerObjs == "undefined" ) { var mi24PlayerObjs = new Array(); } function mi24Initialize_flash_653763() { mi24player_653763 = new mi24playerClazz("653763","flashv3"); mi24player_653763.init("mainjvideo_653763"); window.mi24PlayerObjs.push( mi24player_653763 ); mi24func.executeIfPresent('mi24player_653763', 'mi24player_653763.videoDetail = {};mi24player_653763.videoDetail = {"flvUrl":"http:\/\/hd.cdn.edge-cdn.net\/videodb\/1878\/videodb_1878_31276_6162914_16x9_mq.mp4","length":"419","title":"LOCTITE Succeshistorier \u2013 Berg Propulsion","autoplay":0};attachMi24Analytics("mi24player_653763");'); mi24player_653763.isResponsive = true; /* for single api implementations, clone the first mi24player object */ if(typeof mi24player != "object") { mi24player = mi24player_653763; } } window.setTimeout(function() { mi24func.executeIfPresent("mi24playerClazz","mi24Initialize_653763()"); }, 800); var isPlayerReady_653763 = true; var PlayerLoaded_653763 = false; var stopvideoonload_653763 = false; var stopvideoonloadstatus_653763 = false; var playingok_653763 = false; var autoplaystatus_653763 = -1; function fp_stop_653763() { stopvideoonload_653763 = true; } function flashPlayerStatusEvent_653763(status_) { if (typeof mi24player_653763 != "undefined") { mi24player_653763.flashPlayerStatusEvent(status_); } } //flashPlayerStatusEvent var x_501d1d8b0c414a9753e12a7ef8cd9cd2timerid= new Array(); if (typeof mi24players == "undefined") { var mi24players=1;} function r_653763_6cd89d5ac4d0fd21f202818521d03c90replacetext(text){ var tmp_text; if (document.getElementById("videoplayback_titlebar_653763")){ tmp_text=text; if (tmp_text.length > 59) { tmp_text=tmp_text.substr(0,56)+"..."; } document.getElementById("videoplayback_titlebar_653763").innerHTML=tmp_text; } } function x_501d1d8b0c414a9753e12a7ef8cd9cd2loadloadimg(){ if (document.getElementById("bgexfashcontent653763X1024X576X1577818431X952")) { document.getElementById("bgexfashcontent653763X1024X576X1577818431X952").innerHTML='
';}} function x_501d1d8b0c414a9753e12a7ef8cd9cd2loadblank(){ if (document.getElementById("bgblankexfashcontent653763X1024X576X1577818431X952")) { document.getElementById("bgblankexfashcontent653763X1024X576X1577818431X952").innerHTML="";} } function x_501d1d8b0c414a9753e12a7ef8cd9cd2noflash(){ if ((typeof thisMovie("mainjvideo_653763") == "undefined") || (thisMovie("mainjvideo_653763") == null)) { if (!document.getElementById("exfashcontent653763X1024X576X1577818431X952")) { return;} if (!document.getElementById("bgexfashcontent653763X1024X576X1577818431X952")) { return;} if (document.getElementById("exfashcontent653763X1024X576X1577818431X952").innerHTML.substr(0,1) == ".") { if (document.getElementById("exfashcontent653763X1024X576X1577818431X952")) { document.getElementById("exfashcontent653763X1024X576X1577818431X952").innerHTML="
";} if (document.getElementById("bgexfashcontent653763X1024X576X1577818431X952")) { document.getElementById("bgexfashcontent653763X1024X576X1577818431X952").style.opacity="0.3";} if (document.getElementById("bgexfashcontent653763X1024X576X1577818431X952")) { document.getElementById("bgexfashcontent653763X1024X576X1577818431X952").style.filter="alpha(opacity=30)";} if (document.getElementById("bgexfashcontent653763X1024X576X1577818431X952")) { document.getElementById("bgexfashcontent653763X1024X576X1577818431X952").style.MozOpacity="0.3";} }}} /* init the flash player */ var initFlashPlayer_653763 = function() { so = new SWFObject("http://dl.edge-cdn.net/flashplayer/playerv3.swf", "mainjvideo_653763", '100%', '100%', "8", "#000000"); var flashplayer = "42"; mi24flashtools.detectOldVersion(flashplayer); if(mi24flashtools.getAvailableVersion() == 0) { } else if(mi24flashtools.isOldVersion() && flashplayer == "v2") { alert("Flash version 9 or above is required."); } else if(mi24flashtools.isOldVersion() && flashplayer != "v2") { alert("Mindestens Flash Version 10.1 erforderlich."); } so.useExpressInstall("http://dl.edge-cdn.net/flashplayer/expressinstall.swf"); so.addVariable("allowScriptAccess", "always");if (stopvideoonload_653763) { so.addVariable("autoStart","0"); autoplaystatus_653763 = 0; } else { so.addVariable("autoStart","false"); autoplaystatus_653763 = false; } so.addVariable("config_playerObjectID","mainjvideo_653763"); so.addVariable("config_url","http%3A%2F%2Fdl.edge-cdn.net%2Fvideoxmls%2Fx%2F3%2F28%2F1f%2F%2F0%2FskinXML%2F576.551.1024.0.0%2F0%2F9d96cae801f09aa71f6eabd24c50f1dedZLdbsMgDIXfhQeoSELSjF5t0voaFUlohsZPBk61aeq7zyHQRdrCFf6OOTYGwSv-HXjLSXhXdhAgyEnwZmENJ8qMF-vISXFWniL5NPofAmEhBWOsKGpKa1QYJ1rYkeC25ERasmb3TjsflhpFLFIjgrX%2FX4rknxs2-NTDJJQJuG1opSeN0K1J7A9q3rZF5zQDWv-YcdkcI3rIYi9JsVek2KvSfFo8hzXRqj3hOaPgGPtxkSHdpAymlYLLbfXwrxrzitFRSvs6h6fvHcWvNPrc7D0DzqwlwBuii-62NCV3Zyejcw0X%2FXJX7MQm9Q_yYmkD5sUJg7UKDjQbpeJ4DwkGP8J0baOYfY46YQTWgpdX24IghaDdJngJ6gzG-MZYfZC1DOZl8cSz91OcKE5-FlBsgJ9_t6US8nFxQ4_0XW3or22KaxBhs_Q4VpN6zujLBilP5g3E3ZURX%2FXkMSnboncHx_gA%252C.xml,http%3A%2F%2Fdl.edge-cdn.net%2Fvideoxmls%2Fx%2F3%2F80%2Fb2%2F653763%2FvideoSrcXML%2F576.551.1024.38.1430144701%2F2_6a27e2c5eb94f1a74d992461cc6a46e7%2Fc0feb5b1948f399bb7f84ad9f6567939TVJNc6QgFPwv3NfiQxTxlvOe90oxgEpFYQKMJpWa_76AMTUHLd6jG7r7IXnPvyOnHKhdhghGyUlpoNyR-u2Rknf_bLS31YCx4ia5xrpGhANt432VX4ux85LAaDmlKG8NmfwuN2n_-rlCIeJgt1p0lPX%2FXQdEY_fZUMJ7QgkdBgkZKihDA59i6jIaONDxiHWM6GSQBiKYCYTTFh8TOI4jmb1Ktlk_sSHUibGRr-D8VlV-ssNQtUO5qAINUGbaGdXpLY4K-uKzVtytHTgS6O7Gpn5oUtBihF0nXNYnZbSRhC34-sNX%2FXL2H03RnGtO7nXgmDXcCdlLLlYPWzr4oQYcOZcka4Gl0-1rgfWjB3f1ebrrSsJFx5dkqzQVOpWg0njdGEIWaIUYw0JGqAhZCnJSZVjbASUhHsfM7ZHMo_XLr8Zlx0U2XAOjTjN-nkbEKz-d262W65wGX%2FX2j_PbzJD631fk6Zw7IOe_L4-b178NZZVzKus83pCCkWsuAMP-2vB_PD6Hz93z-Bw%252C%252C.xml"); so.addVariable("config_javascriptEvents","true"); so.addParam("wmode","opaque"); so.addParam("allowFullScreen","true"); so.addParam("allowScriptAccess","always"); so.addParam("scale","noscale"); so.addParam("salign","LT"); so.addVariable("playerID",mi24players++); so.write("exfashcontent653763X1024X576X1577818431X952"); PlayerLoaded_653763=true; x_501d1d8b0c414a9753e12a7ef8cd9cd2timerid["x_501d1d8b0c414a9753e12a7ef8cd9cd2noflash"] = setTimeout("if (typeof x_501d1d8b0c414a9753e12a7ef8cd9cd2noflash == 'function') {x_501d1d8b0c414a9753e12a7ef8cd9cd2noflash();}",5500); }; /*initFlashPlayer*/ // ftf ie8 try{ if (mi24func.executeIfPresent("SWFObject mi24flashtools","initFlashPlayer_653763()") === false) { mi24func.executeIfPresent("SWFObject mi24flashtools",initFlashPlayer_653763()); }; } catch(e) {} x_501d1d8b0c414a9753e12a7ef8cd9cd2timerid["x_501d1d8b0c414a9753e12a7ef8cd9cd2loadloadimg"] = setTimeout("if (typeof x_501d1d8b0c414a9753e12a7ef8cd9cd2loadloadimg == 'function') {x_501d1d8b0c414a9753e12a7ef8cd9cd2loadloadimg();}",4000); x_501d1d8b0c414a9753e12a7ef8cd9cd2timerid["x_501d1d8b0c414a9753e12a7ef8cd9cd2loadloadblank1"] = setTimeout("if (typeof x_501d1d8b0c414a9753e12a7ef8cd9cd2loadblank == 'function') {x_501d1d8b0c414a9753e12a7ef8cd9cd2loadblank();}",3000); x_501d1d8b0c414a9753e12a7ef8cd9cd2timerid["x_501d1d8b0c414a9753e12a7ef8cd9cd2loadloadblank1"] = setTimeout("if (typeof x_501d1d8b0c414a9753e12a7ef8cd9cd2loadblank == 'function') {x_501d1d8b0c414a9753e12a7ef8cd9cd2loadblank();}",6000); x_501d1d8b0c414a9753e12a7ef8cd9cd2timerid["x_501d1d8b0c414a9753e12a7ef8cd9cd2loadloadblank1"] = setTimeout("if (typeof x_501d1d8b0c414a9753e12a7ef8cd9cd2loadblank == 'function') {x_501d1d8b0c414a9753e12a7ef8cd9cd2loadblank();}",9000); if (typeof mi24configClazz == 'undefined') { mi24func.load("http://dl.edge-cdn.net/javascript/mi24/src/mi24config.js","js"); } if (typeof mi24playerClazz == "undefined") { mi24func.executeIfPresent('mi24','mi24.setPlayerVersion(" 2.3.2.3")'); mi24func.executeIfPresent('mi24','mi24.setPlayerActivationDate("17/06/2013")'); mi24func.executeIfPresent('mi24','mi24.addFeature("html5RC1")'); mi24func.executeIfPresent('mi24','mi24.addExpectedFeature("html5RC1")'); } var mi24player_653763; var mi24config_653763; if ( typeof mi24PlayerObjs == "undefined" ){ var mi24PlayerObjs = new Array(); } function mi24Initialize_html5_653763() { try { mi24player_653763 = new mi24playerClazz("653763","html5","1878"); mi24player_653763.videoNode = document.getElementById('mainjvideo5_653763'); mi24player_653763.thumbNode = document.getElementById('mi24thumb_653763'); mi24player_653763.playbtnNode = document.getElementById('mi24play_653763'); mi24player_653763.playNode = document.getElementById('mi24play_653763'); window.mi24PlayerObjs.push( mi24player_653763 ); mi24player_653763.isResponsive = true; mi24config_653763 = new mi24configClazz("653763"); mi24player_653763.setPlayerDimXY("1024 551"); mi24config_653763.init('http%3A%2F%2Fdl.edge-cdn.net%2Fvideoxmls%2Fx%2F6%2F9a%2Ffe%2F%2F0%2FskinXML%2F576.551.1024.0.0%2F0%2F99f0403457b919e5bdceb33ecfd2f834dZJbbsMgEEX3wgIi_HbJVys124jGNnFRebiAo1ZV9t4xhsRSY76Yc4c7wwCwgv061jLiPoUewAM5AqsXVjMi1HjWhhwFK_NjIN9KPiHeLSQryzLLKkorVEpGJOiR4DZnhGuyZvdGGuuWGlkoUiHyfZX%2FXdFuWnb5iUEUcij8F5QSk8bodgTyj2ratlnjNANq5-wJhpcwroLsNck7DUJe03CvclTWBuh2hPqfwKOtRsjHdqB82BaLDTfXgvzLikvh4IW2NUtPHlvtLdGrs9Rxn_QeX123kzhRRcburKrkbPiicbEX%2FXrxnkBvUfMHlu3Qa5ufPCy3CQrtdxHqxPMf4TxfWcQuzxUSiCpdDl7onASTFwmwA6eqEeMRYdZgteGJ1McCj91KUIE16Ht9n7lHC7rde0fDJOeGN_yNpZ1jZtHKrT4SsUmHbF6kaBhpHbgzJXoUehMMX%2FXjLQ28UDvcP.xml','http%3A%2F%2Fdl.edge-cdn.net%2Fvideoxmls%2Fx%2F3%2F80%2Fb2%2F653763%2FvideoSrcXML%2F576.551.1024.38.1430144701%2F2_6a27e2c5eb94f1a74d992461cc6a46e7%2F07484dcdf4e389e7f84609d6ca66466cTVLLsp0gEPwX9rFAxAfusr6LVFLJ1uIAKnV5GEBN6tb59wBeU2ehwky3M90zjHb0I1BCAT-YD2BktMkBlCJMfN1jdPaXCuqhJRgLbmY6lDPCFAgVNs3-rlItawSjooSglBoS-Z0Zpt7cUqCwp-BQYmX%2FXoJ7lo87f-PFcGkxRCTYWCwRxXp4dA1iEwJLZ1PONR3_cTjhGp4f7ycpZd-dSFO53lW2vGoovwSds5lCJV4L0VTF_Ou9Q_upbTfUpvS__z-llOQAjA-ixx3y0ao6K4p2ApUyKAWmzU1daK02Y9HtCRHX%2FX4EugvQOJ-VvkC87F0f2fU4m45jCCdTO-VnhxrWsv12Z9XLncZX8DD5yvDQXaLa50hHA_XONICFs8Tr-V9pPm5eY2bkShpU78bTzuk911O3D4aGrC50EKBhsoUE-GdqhRJqSxTjMvQvpsUm7YujQQeXX%2FXK323jrTbhg58KAZbrSGWbZIn1l3KHsoky61E3FnfncnT9GW1dmQwG-FuPWaJy4tiql1mg0Ccps19J1qVD0E-M6z6mmH4p24_UgdL2ez38%252C.xml'); mi24player_653763.init(mi24player_653763.videoNode); //mi24player_653763.initAkamai(); mi24player_653763.videoNode.addEventListener('play', mi24player_653763.html5PlayerStatusEvent, false); mi24player_653763.videoNode.addEventListener('play', mi24player_653763.html5PlayerOnPlayPressedStatusEvent, false); mi24player_653763.videoNode.addEventListener('onPlayPressed', mi24player_653763.html5PlayerStatusEvent, false); mi24player_653763.videoNode.addEventListener('pause', mi24player_653763.html5PlayerStatusEvent, false); mi24player_653763.videoNode.addEventListener('ended', mi24player_653763.html5PlayerStatusEvent, false); mi24player_653763.videoNode.addEventListener('timeupdate', mi24player_653763.html5PlayerStatusEvent, false); mi24player_653763.registerStatusFunction("ended","mi24config_653763.showStartScreen()"); mi24player_653763.registerStatusFunction("play","mi24config_653763.showPlayer()"); mi24player_653763.registerStatusFunction('timeupdate','mi24player_653763.processEvents(mi24player_653763.getposition())'); /* for single api implementations, clone the first mi24player object */ if(typeof mi24player != "object") { mi24player = mi24player_653763; } } catch(e) {mi24logger.log(e);} } window.setTimeout(function() { mi24func.executeIfPresent("jQuery",'mi24func.showPlayerDo(653763);') }, 800);