var mijsvcontent991438=''; mijsvcontent991438+='
\n'; mijsvcontent991438+='
\n'; mijsvcontent991438+='\n'; mijsvcontent991438+='\n'; mijsvcontent991438+=' \n'; mijsvcontent991438+='\n'; mijsvcontent991438+=' \n'; mijsvcontent991438+=' \n'; mijsvcontent991438+=' \n'; mijsvcontent991438+='\n'; mijsvcontent991438+=' \n'; mijsvcontent991438+='\n'; mijsvcontent991438+='\n'; mijsvcontent991438+=' \n'; mijsvcontent991438+='\n'; mijsvcontent991438+='
\n'; mijsvcontent991438+='\n'; mijsvcontent991438+='\n'; mijsvcontent991438+='
\n'; mijsvcontent991438+='
\n'; mijsvcontent991438+='
\n'; mijsvcontent991438+='\n'; mijsvcontent991438+='\n'; mijsvcontent991438+='\n'; mijsvcontent991438+='\n'; mijsvcontent991438+='
\n'; mijsvcontent991438+='
\n'; mijsvcontent991438+='
\n'; mijsvcontent991438+='
.
\n'; mijsvcontent991438+='
\n'; mijsvcontent991438+='\n'; mijsvcontent991438+='
\n'; mijsvcontent991438+='
\n'; mijsvcontent991438+='
\n'; mijsvcontent991438+='
\n'; mijsvcontent991438+=' \n'; mijsvcontent991438+='\n'; mijsvcontent991438+='
\n'; mijsvcontent991438+='
\n'; mijsvcontent991438+='\n'; mijsvcontent991438+='
\n'; mijsvcontent991438+='
\n'; mijsvcontent991438+='\n'; mijsvcontent991438+='
\n'; mijsvcontent991438+='
 
\n'; mijsvcontent991438+='
\n'; mijsvcontent991438+='
\n'; mijsvcontent991438+='
\n'; mijsvcontent991438+='
\n'; mijsvcontent991438+=' \n'; mijsvcontent991438+='
\n'; mijsvcontent991438+='\n'; mijsvcontent991438+='
\n'; mijsvcontent991438+='
\n'; mijsvcontent991438+='
\n'; mijsvcontent991438+='\n'; document.getElementById('mijsvdiv991438').innerHTML=mijsvcontent991438; /* * @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("https://dl.edge-cdn.net/flashplayer/swfobject.js","js"); //load("https://dl.edge-cdn.net/flashplayer/swfobject.js","js"); } else { var testSWF = new SWFObject(); if(typeof testSWF.attributes.useExpressInstall == "undefined") { mi24func.load("https://dl.edge-cdn.net/flashplayer/swfobject.js","js"); } } if (typeof mi24flashtools == "undefined") { mi24func.load("https://dl.edge-cdn.net/javascript/mi24/src/mi24flashtools.js","js"); //load("https://dl.edge-cdn.net/javascript/mi24/src/mi24flashtools.js","js"); } if (typeof mi24Clazz == 'undefined') { mi24func.load("https://dl.edge-cdn.net/javascript/mi24/src/mi24.js","js"); } if (typeof jQuery == "undefined") { mi24func.load("https://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("https://dl.edge-cdn.net/javascript/mi24/src/mi24player.js","js"); } if (typeof mi24responsiveClazz == "undefined") { mi24func.load("https://dl.edge-cdn.net/javascript/mi24/src/mi24responsive.js","js"); } var activeAnalyticsPlugins = ["Akamai_0_1"]; var AKAMAI_MEDIA_ANALYTICS_CONFIG_FILE_PATH = "//ma1081-r.analytics.edgekey.net/config/beacon-8888.xml"; var analytics_view_tracking_api_url = "//ca.video-cdn.net/event"; var analytics_uuid = "5KibUNSNp83R49sng8do3c"; mi24func.load("https://dl.edge-cdn.net/javascript/mi24/analytics/Mi24Analytics.js","js"); mi24func.load("https://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_991438 = new mi24responsiveClazz("991438","flashv4");mi24responsive_991438.init(16/9, 35); addResizeEvent( function() { mi24responsive_991438.setHeight(16/9, 35);})'); var mi24player_991438; if ( typeof mi24PlayerObjs == "undefined" ) { var mi24PlayerObjs = new Array(); } function mi24Initialize_flash_991438() { mi24player_991438 = new mi24playerClazz("991438","flashv4"); mi24player_991438.init("mainjvideo_991438"); window.mi24PlayerObjs.push( mi24player_991438 ); mi24func.executeIfPresent('mi24player_991438', 'mi24player_991438.videoDetail = {};mi24player_991438.videoDetail = {"flvUrl":"https:\/\/hd.cdn.edge-cdn.net\/videodb\/5501\/videodb_5501_53500_7778604_16x9_mq.mp4","length":"89","title":"227_2015_2777_MOESM1_ESM.mp4","autoplay":0};attachMi24Analytics("mi24player_991438");'); mi24player_991438.isResponsive = true; /* for single api implementations, clone the first mi24player object */ if(typeof mi24player != "object") { mi24player = mi24player_991438; } } window.setTimeout(function() { mi24func.executeIfPresent("mi24playerClazz","mi24Initialize_991438()"); }, 800); var isPlayerReady_991438 = true; var PlayerLoaded_991438 = false; var stopvideoonload_991438 = false; var stopvideoonloadstatus_991438 = false; var playingok_991438 = false; var autoplaystatus_991438 = -1; function fp_stop_991438() { stopvideoonload_991438 = true; } function flashPlayerStatusEvent_991438(status_) { if (typeof mi24player_991438 != "undefined") { mi24player_991438.flashPlayerStatusEvent(status_); } } //flashPlayerStatusEvent var x_03f39a2c655fa8b12e4de7f771dfc44atimerid= new Array(); if (typeof mi24players == "undefined") { var mi24players=1;} function r_991438_f15fbf606dfbd353f0fd13542d2a0da6replacetext(text){ var tmp_text; if (document.getElementById("videoplayback_titlebar_991438")){ tmp_text=text; if (tmp_text.length > 59) { tmp_text=tmp_text.substr(0,56)+"..."; } document.getElementById("videoplayback_titlebar_991438").innerHTML=tmp_text; } } function x_03f39a2c655fa8b12e4de7f771dfc44aloadloadimg(){ if (document.getElementById("bgexfashcontent991438X640X395X1500191426X891")) { document.getElementById("bgexfashcontent991438X640X395X1500191426X891").innerHTML='
';}} function x_03f39a2c655fa8b12e4de7f771dfc44aloadblank(){ if (document.getElementById("bgblankexfashcontent991438X640X395X1500191426X891")) { document.getElementById("bgblankexfashcontent991438X640X395X1500191426X891").innerHTML="";} } function x_03f39a2c655fa8b12e4de7f771dfc44anoflash(){ if ((typeof thisMovie("mainjvideo_991438") == "undefined") || (thisMovie("mainjvideo_991438") == null)) { if (!document.getElementById("exfashcontent991438X640X395X1500191426X891")) { return;} if (!document.getElementById("bgexfashcontent991438X640X395X1500191426X891")) { return;} if (document.getElementById("exfashcontent991438X640X395X1500191426X891").innerHTML.substr(0,1) == ".") { if (document.getElementById("exfashcontent991438X640X395X1500191426X891")) { document.getElementById("exfashcontent991438X640X395X1500191426X891").innerHTML="
";} if (document.getElementById("bgexfashcontent991438X640X395X1500191426X891")) { document.getElementById("bgexfashcontent991438X640X395X1500191426X891").style.opacity="0.3";} if (document.getElementById("bgexfashcontent991438X640X395X1500191426X891")) { document.getElementById("bgexfashcontent991438X640X395X1500191426X891").style.filter="alpha(opacity=30)";} if (document.getElementById("bgexfashcontent991438X640X395X1500191426X891")) { document.getElementById("bgexfashcontent991438X640X395X1500191426X891").style.MozOpacity="0.3";} }}} /* init the flash player */ var initFlashPlayer_991438 = function() { so = new SWFObject("https://dl.edge-cdn.net/flashplayer/mi24Player_4.3.25.swf", "mainjvideo_991438", '100%', '100%', "8", "#ffffff"); so.addVariable("allowScriptAccess", "always");if (stopvideoonload_991438) { so.addVariable("autoStart","0"); autoplaystatus_991438 = 0; } else { so.addVariable("autoStart","false"); autoplaystatus_991438 = false; } so.addVariable("config_playerObjectID","mainjvideo_991438"); so.addVariable("config_url","https%3A%2F%2Fdl.edge-cdn.net%2Fvideoxmls%2Fx%2F8%2F3f%2F56%2F%2F0%2FskinXML%2F395.360.640.0.0%2F0%2Ff38aec2fe01c83a88bdbc1ebd9eeac43dZHRcoMgEEX_hfdmIKLp4FPz0N_IoKJlimBhbdrp-O9dFBpn0sCLe-7iZS9SFOIniGdBwru2nQRJaimqyCpB9DhcrCO1FryqV_I1mn8IhEgY55yxktISFS6IkXYg-HkURFmydbfOOB-iB6PRpEQEbcX%2FXOSXK0rFkk4JoGyU9UWO6F4JPAk9CzunVAm4XVdO6F6JJyS0Km40yjNcGeAtB_uJigEmW7N6yL1smbdOgvemS0Hnh6gAXsJ4KYYJcVTGNDKPp2ZR7UGXP81fszS7FD7JidQPuSz8T3nBjQYlRHOFEB6X%2FXyDU-0KjsnEu8486IJhSt-pCNEASjO-UzwH-CHm812nazl6CdzQhTaKdmd6-X7jwDbA20XpZtUK8mFzQ4_022u5UlZSnFYPv4xdD-er0eVDeop7azB6twmOUX.xml,https%3A%2F%2Fdl.edge-cdn.net%2Fvideoxmls%2Fx%2Fc%2Fad%2F00%2F991438%2FvideoSrcXML%2F395.360.640.34.1451127020%2F2_174ec39c4c13eac9754a52e2364453bf%2Fa0c6740e64659c4ead0ecbaa703dba60TVI9r9wgEPwv9LHANviMu6eUKVKltTg-bHQYHODOiZ7uvwdwsF4BgtnZZXYWRgf6GSimgL-YD2BitMsASggTH88Ynf2lg74bCabCU8yEckYdBUKH3bC_q9TLGsGkaUdgCo0p-cE2pn-4JVNHQsFLi3X%2FXkcUd_d5ud1bDAZ5AAZajkSw9iQkdwIQbc5saXziYcxRDOPM2rh7KWSXvrVhTgbbR9N2L22i_QNdxuY3kWfq32gvjTSUpAlSi9k0IvNInuSNJHc4D1anBH4BSAVQIiCsLqDr2yP0lc4FfwtSpl0GfJlX%2FXjZvBFUnPVui7DI_o9iuCqpRDi7hmmPTloUvjFyNHfPqdAraYmEjSgtNdZV5nQhkEpGDTbf_zQpIE4xaX6yA8tkOCbhR4ubudb6IwkhZf56EQVndFIBHqLjrcKagE6nDfipZBwUhOSMOeFS_K-ux01mX%2FXxdmpM8uHvaWN1JvGBVkZUMPY6jkWKR37iwjZXx_x_6sxnrCoeCrrZwNrQ5cf00w8IKTpND9DPjJs-1pZ-aDtO5EDq39_sf.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("exfashcontent991438X640X395X1500191426X891"); PlayerLoaded_991438=true; x_03f39a2c655fa8b12e4de7f771dfc44atimerid["x_03f39a2c655fa8b12e4de7f771dfc44anoflash"] = setTimeout("if (typeof x_03f39a2c655fa8b12e4de7f771dfc44anoflash == 'function') {x_03f39a2c655fa8b12e4de7f771dfc44anoflash();}",5500); }; /*initFlashPlayer*/ // ftf ie8 try{ if (mi24func.executeIfPresent("SWFObject mi24flashtools","initFlashPlayer_991438()") === false) { mi24func.executeIfPresent("SWFObject mi24flashtools",initFlashPlayer_991438()); }; } catch(e) {} x_03f39a2c655fa8b12e4de7f771dfc44atimerid["x_03f39a2c655fa8b12e4de7f771dfc44aloadloadimg"] = setTimeout("if (typeof x_03f39a2c655fa8b12e4de7f771dfc44aloadloadimg == 'function') {x_03f39a2c655fa8b12e4de7f771dfc44aloadloadimg();}",4000); x_03f39a2c655fa8b12e4de7f771dfc44atimerid["x_03f39a2c655fa8b12e4de7f771dfc44aloadloadblank1"] = setTimeout("if (typeof x_03f39a2c655fa8b12e4de7f771dfc44aloadblank == 'function') {x_03f39a2c655fa8b12e4de7f771dfc44aloadblank();}",3000); x_03f39a2c655fa8b12e4de7f771dfc44atimerid["x_03f39a2c655fa8b12e4de7f771dfc44aloadloadblank1"] = setTimeout("if (typeof x_03f39a2c655fa8b12e4de7f771dfc44aloadblank == 'function') {x_03f39a2c655fa8b12e4de7f771dfc44aloadblank();}",6000); x_03f39a2c655fa8b12e4de7f771dfc44atimerid["x_03f39a2c655fa8b12e4de7f771dfc44aloadloadblank1"] = setTimeout("if (typeof x_03f39a2c655fa8b12e4de7f771dfc44aloadblank == 'function') {x_03f39a2c655fa8b12e4de7f771dfc44aloadblank();}",9000); if (typeof mi24configClazz == 'undefined') { mi24func.load("https://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_991438; var mi24config_991438; if ( typeof mi24PlayerObjs == "undefined" ){ var mi24PlayerObjs = new Array(); } function mi24Initialize_html5_991438() { try { mi24player_991438 = new mi24playerClazz("991438","html5","5501"); mi24player_991438.videoNode = document.getElementById('mainjvideo5_991438'); mi24player_991438.thumbNode = document.getElementById('mi24thumb_991438'); mi24player_991438.playbtnNode = document.getElementById('mi24play_991438'); mi24player_991438.playNode = document.getElementById('mi24play_991438'); window.mi24PlayerObjs.push( mi24player_991438 ); mi24player_991438.isResponsive = true; mi24config_991438 = new mi24configClazz("991438"); mi24player_991438.setPlayerDimXY("640 360"); mi24config_991438.init('https%3A%2F%2Fdl.edge-cdn.net%2Fvideoxmls%2Fx%2F2%2Fcb%2Ffe%2F%2F0%2FskinXML%2F395.360.640.0.0%2F0%2Fa465ddf1fde87f4e70b22d20697ecae2dZFNbsMgEIXvwr4RxD-p8KpZ9BoRNthFxeDCuGlV-e4dbGgspYGN53uDH_MQvOA_gT9zEt61lQIEaQSvI6s50eNwsY40mpd1s5Kv0fxDIETCyrJkrKK0QqXkxAg7EPw8cqIs2bo7Z5wP0YPRaFIhgqX%2FX5lSa7XFYskHJNA2anuip1QPBLKJPQs7p1QJeF1XTuhfiSckiBV3GmUdrgzQNoPdxMUnEy35nWRZlmz7pwF78yWQ5keoAV7CeCmGCXFUxjQyj6dmUe1Btz8NX7MwuxQ9yYmUD7ks_E95xY0GJURzhRAX%2FXeMg1PtCo7JxLvOPNKIFo1IdsgyAYLZXPAP8IerzVaCpnL0A7mxFm0E3t7lYv8jwDbA20WZZtTK8mFzQ4_022m1UVZSnDYPv4xdD-er0elBzUUyftwSocZfkF.xml','https%3A%2F%2Fdl.edge-cdn.net%2Fvideoxmls%2Fx%2Fc%2Fad%2F00%2F991438%2FvideoSrcXML%2F395.360.640.34.1451127020%2F2_174ec39c4c13eac9754a52e2364453bf%2F1f68fb87d8ab7a85b803b1d2e6167460TVJNs5wgEPwv3GOJH6jsLZXjO7xKKrlaLIxKLYIBdk3q1f73DBi33kHFnh7o6Ubwjn8E3nIiH8IHchG8SQBFRKiv9xid_aWDvhogl8ybhAl5TWtOlA6bEX8X0PMSyUXzmpVYGrD5Jlah39ycqSVyH1X%2FXqNw0Cbuh_vr2XRsg66UtBKUtUNBRtYzxjtR2SD88hr25KOMo60Ks-Phwk8-MWFOBptb0XYvLYz-EK6NZ-HAqa7MT-kB7DvqBD8z-9vqVRyQi7PPIk7J6bHyBUnW6YqCHq2aZyGYQtLVlyjbRNSfgLYX%2FXCVDKSVjcLhexRfAnjBv-Vnkb_OnSzxJX054IHntC3yDcotteFXpK2bWKS4JZkw96afxk-dAeyWDBZruRBJYcOUzmcTQcOXCy6qp5fyEowbjZpX1oO1QdQj0nHja3yVVlBmrxZ3CiAzZUAErJqW6AsbX%2FX69TkPf17S89mVfpwaMepxkVtYkp5Nm6zBQ2KW723i6g7xgpywLDd33vQA1wxepbGEh_r9tf1ZjXeZwUp8jHAOtTh33EEvZxKDX7bim6HWIfhTSpHgr_qF5dzkeSo_X8_kP.xml'); mi24player_991438.init(mi24player_991438.videoNode); //mi24player_991438.initAkamai(); mi24player_991438.videoNode.addEventListener('play', mi24player_991438.html5PlayerStatusEvent, false); mi24player_991438.videoNode.addEventListener('play', mi24player_991438.html5PlayerOnPlayPressedStatusEvent, false); mi24player_991438.videoNode.addEventListener('onPlayPressed', mi24player_991438.html5PlayerStatusEvent, false); mi24player_991438.videoNode.addEventListener('pause', mi24player_991438.html5PlayerStatusEvent, false); mi24player_991438.videoNode.addEventListener('ended', mi24player_991438.html5PlayerStatusEvent, false); mi24player_991438.videoNode.addEventListener('timeupdate', mi24player_991438.html5PlayerStatusEvent, false); mi24player_991438.registerStatusFunction("ended","mi24config_991438.showStartScreen()"); mi24player_991438.registerStatusFunction("play","mi24config_991438.showPlayer()"); mi24player_991438.registerStatusFunction('timeupdate','mi24player_991438.processEvents(mi24player_991438.getposition())'); /* for single api implementations, clone the first mi24player object */ if(typeof mi24player != "object") { mi24player = mi24player_991438; } } catch(e) {mi24logger.log(e);} } window.setTimeout(function() { mi24func.executeIfPresent("jQuery",'mi24func.showPlayerDo(991438);') }, 800);