/* Player TYPE 2 DayPort, Inc. */ DayPortPlayerCallBack.DayPortPlayer_0.embed = function() { this.version = "200806181323"; this.imageDomain = "whec.img.cdn.dayport.com"; this.flashObject = "http://"+this.imageDomain+"/dayportcore/dpm/DayPortDPMVideo.swf"; this.controlsObject = "http://"+this.imageDomain+"/dayportcore/dpm/DayPortTYPE2ControlsExt.swf"; this.configSettings = new Object(); //config settings area for template file****************************** this.configSettings.backgroundColor="999999";this.configSettings.buttonBackColor="999999";this.configSettings.buttonBackHoverColor="FFFFFF";this.configSettings.graphicHexColor="000000";this.configSettings.textHexColor="000000";this.configSettings.backgroundGradientAlpha="50";this.configSettings.enableEmbedButton="true";this.configSettings.embedPlayer="";this.configSettings.enableHelpButton="true";this.configSettings.helpLink="http://www.dayport.com";this.configSettings.enableCCButton="true";this.configSettings.enableEmailButton="true";this.configSettings.enableFullScreenButton="true";this.configSettings.enableSearch="true";this.configSettings.linkGraphicDefault="";this.configSettings.overlayImage="";this.configSettings.overlayAlpha="50";this.configSettings.defaultPreviewImage="http://dayport.img.cdn.dayport.com/img/greenThumbnail320.jpg";this.configSettings.enableSizeConstraint="false";this.configSettings.videoWidth="300";this.configSettings.videoHeight="225";this.configSettings.previewGridCover="true";this.configSettings.enableProtectedContent="false";this.configSettings.formatPreference="FLV";this.configSettings.slideShow="true";this.configSettings.autoPlay="false";this.configSettings.continuousPlay="false";this.configSettings.enableToolTips="true";this.configSettings.windowsFileTypeIDProtected="13";this.configSettings.windowsFileTypeID="1";this.configSettings.type="2";this.configSettings.fileTypeID="2";this.configSettings.liveStreamFileTypeID="3";this.configSettings.linkGraphicUserDef="";this.configSettings.videoLinkUserDef="";this.configSettings.affiliateCategory="";this.configSettings.categoryID="3";this.configSettings.rootCategory="";this.configSettings.limit="10";this.configSettings.playVideoAds="true";this.configSettings.videoAdConDefID="7";this.configSettings.adInsertionFrequency="2";this.configSettings.initialAdQueue="true";this.configSettings.videoAdObjectID="12";this.configSettings.videoPostAdObjectID="";this.configSettings.bannerAdConDefID="13";this.configSettings.bannerAdWidth="300";this.configSettings.bannerAdHeight="75";this.configSettings.videoLinkAppend="";this.configSettings.videoLinkPrepend="";this.configSettings.videoLinkDefault="";this.configSettings.analyticsLoad="";this.configSettings.analyticsPlay="";this.configSettings.analyticsPause="";this.configSettings.analyticsComplete=""; //****************************************************************** var excludeUpdateVar = new Array(); //keep references of variables not to be duplicated in configSetting Object var hasSpecifiedVideo = false; if(this.articleID != "" && this.articleID != null) { this.configSettings.articleID = this.articleID; hasSpecifiedVideo = true; } //find articleID in URL Query and place it in front of articleID specified in DB var overrideArticle = this.getURLVar('articleID'); if(overrideArticle != "" && typeof overrideArticle != "undefined") { if(!hasSpecifiedVideo) { this.configSettings.articleID = overrideArticle; }else{ var tempArticleHold = this.configSettings.articleID; this.configSettings.articleID = overrideArticle; this.configSettings.articleID += ","+tempArticleHold; } } excludeUpdateVar[excludeUpdateVar.length] = "articleID"; //override categoryID if set in embed logic if(this.categoryID != "" && typeof this.categoryID != "undefined") { this.configSettings.categoryID = this.categoryID; } excludeUpdateVar[excludeUpdateVar.length] = "categoryID"; this.extendedPlayer = false; //if subcategories, extend player controls for tabs //override rootCategory if set in embed logic if(this.rootCategory != "" && typeof this.rootCategory != "undefined") { this.configSettings.rootCategory = this.rootCategory; this.extendedPlayer = true; } if(this.configSettings.rootCategory != "" && typeof this.configSettings.rootCategory != "undefined") { this.extendedPlayer = true; } excludeUpdateVar[excludeUpdateVar.length] = "rootCategory"; if(this.extendedPlayer) { this.controlsHeight = "143"; }else{ this.controlsHeight = "123"; } //make sure bannerContainer setting is a blank String for Flash if non specified if(typeof document.getElementById(this.bannerContainer) == "undefined" || document.getElementById(this.bannerContainer) == null) this.bannerContainer = ""; if(this.bannerContainer != "" && typeof this.bannerContainer != "undefined") { this.configSettings.bannerContainer = this.bannerContainer; } excludeUpdateVar[excludeUpdateVar.length] = "bannerContainer"; //register metaDataListener if specified in embed this.metaDataListener = null; if(typeof this.incomingSettings.metaDataListener == "function") { this.metaDataListener = this.incomingSettings.metaDataListener; } excludeUpdateVar[excludeUpdateVar.length] = "metaDataListener"; //update or add incomingSettings from embed to configSettings to be sent to flash objects for(var x in this.incomingSettings) { var found = false; for(var y=0;y'+ '
'+ '
'+ '
'+ '
'+ '
'+ '
'+ '
'+ ''+ '
'; document.getElementById(DayPortPlayerCallBack.DayPortPlayer_0.playerContainerArea).innerHTML = divAreaPrint; document.getElementById(DayPortPlayerCallBack.DayPortPlayer_0.playerContainerArea).style.width = this.defaultVideoWidth+'px'; this.flashVideoContainer = document.getElementById('tvPlayerFlash_'+this.id); this.liveStreamContainer = document.getElementById('tvPlayerWindows_'+this.id); this.liveOverLayContainer = document.getElementById('tvPlayerLiveOverlay_'+this.id); this.windowsVideoScreen = document.getElementById('tvPlayerVideoScreen_'+this.id); this.playerVideoArea = document.getElementById('tvPlayerVideoArea_'+this.id); this.PlayerVideoDisplayArea = document.getElementById('tvPlayerVideoDisplayArea_'+this.id); this.liveStreamObjName = 'tvPlayerMediaObj_'+this.id; var displayLiveStream = false; //do not start embedding the flash until document onload event, if IE //if flash external interface is used before document onload, all events stop if(this.isIE) { var thisObj = this; this.embedMainFlashVideo = function() { if(DayPortOnLoadCalled) { thisObj.generateFlashObject('tvPlayerFlash_'+thisObj.id,true); clearInterval(thisObj.generateFlashInterval); } } this.generateFlashInterval = setInterval(this.embedMainFlashVideo,10); }else{ this.generateFlashObject('tvPlayerFlash_'+this.id,true); } //firefox has hard time with two flash objects on top of each other, so move livestream cover container off the page if(!this.isIE) { this.liveStreamContainer.style.top = '-100000px'; this.liveOverLayContainer.style.top = '-100000px'; //don't play windows media in other browsers this.configSettings.formatPreference="FLV"; } }; DayPortPlayerCallBack.DayPortPlayer_0.setAdPackages = function(adPackage) { try{ this.flashPlayer.setAdPackages(adPackage); }catch(e){} } DayPortPlayerCallBack.DayPortPlayer_0.getSettings = function() { //called from flash objects to get player settings return this.configSettings; } DayPortPlayerCallBack.DayPortPlayer_0.registerEvents = function(registerObject) { //called from onFlashLoad, have JavaScript register events for object that is ready if(registerObject == "controls") { try{ this.videoControls.registerEventListener("Playing",'DayPortPlayerCallBack.DayPortPlayer_0.playCP'); }catch(e){}; try{ this.videoControls.registerEventListener("Paused",'DayPortPlayerCallBack.DayPortPlayer_0.pauseCP'); }catch(e){}; try{ this.videoControls.registerEventListener("Mute",'DayPortPlayerCallBack.DayPortPlayer_0.muteCP'); }catch(e){}; try{ this.videoControls.registerEventListener("Unmute",'DayPortPlayerCallBack.DayPortPlayer_0.unmuteCP'); }catch(e){}; try{ this.videoControls.registerEventListener("DayPortMenu",'DayPortPlayerCallBack.DayPortPlayer_0.dayPortMenuCP'); }catch(e){}; try{ this.videoControls.registerEventListener("Seek",'DayPortPlayerCallBack.DayPortPlayer_0.seekCP'); }catch(e){}; try{ this.videoControls.registerEventListener("SearchButton",'DayPortPlayerCallBack.DayPortPlayer_0.SearchButtonCP'); }catch(e){}; try{ this.videoControls.registerEventListener("Volume",'DayPortPlayerCallBack.DayPortPlayer_0.volumeCP'); }catch(e){}; try{ this.videoControls.registerEventListener("ConfigSettings",'DayPortPlayerCallBack.DayPortPlayer_0.configSettingsCP'); }catch(e){}; try{ this.videoControls.registerEventListener("PlayArticle",'DayPortPlayerCallBack.DayPortPlayer_0.playArticleCP'); }catch(e){}; try{ this.videoControls.registerEventListener("CategoryChange",'DayPortPlayerCallBack.DayPortPlayer_0.CategoryChangeCP'); }catch(e){}; this.generateLiveStreamOverLay('tvPlayerLiveOverlay_'+this.id); //make sure if video is paused on load that play button is enabled if(this.configSettings.autoPlay != "true") this.videoControls.enablePlayButton(true); //only create the windows media object if browser is IE. Windows media object is dynamically created in other browsers if(this.isIE) this.generateWindowsTag('tvPlayerVideoScreen_'+this.id, this.configSettings.videoWidth, this.configSettings.videoHeight, this.liveStreamObjName, true); this.objectsRegistered++; } if(registerObject == "flashVideo") { //register events that have been passed in at embed time if(typeof(this.incomingSettings.registerEvents) != "undefined") { for(var x in this.incomingSettings.registerEvents) { this.registerEventListener(x,this.incomingSettings.registerEvents[x]); } } try{ this.flashPlayer.registerEventListener("ArticleSelected",'DayPortPlayerCallBack.DayPortPlayer_0.ArticleSelectedPB');}catch(e){} try{ this.flashPlayer.registerEventListener("PositionUpdated",'DayPortPlayerCallBack.DayPortPlayer_0.PositionUpdatedPB'); }catch(e){}; try{ this.flashPlayer.registerEventListener("DurationUpdated",'DayPortPlayerCallBack.DayPortPlayer_0.DurationUpdatedPB'); }catch(e){}; try{ this.flashPlayer.registerEventListener("EndOfStream",'DayPortPlayerCallBack.DayPortPlayer_0.EndOfStreamPB'); }catch(e){}; try{ this.flashPlayer.registerEventListener("bufferPercent",'DayPortPlayerCallBack.DayPortPlayer_0.flashBufferPB'); }catch(e){}; try{ this.flashPlayer.registerEventListener("LiveStream",'DayPortPlayerCallBack.DayPortPlayer_0.LiveStreamPB'); }catch(e){}; try{ this.flashPlayer.registerEventListener("MetadataRetrieved",'DayPortPlayerCallBack.DayPortPlayer_0.MetadataRetrievedPB'); }catch(e){}; try{ this.flashPlayer.registerEventListener("Mute",'DayPortPlayerCallBack.DayPortPlayer_0.MutePB'); }catch(e){}; try{ this.flashPlayer.registerEventListener("Playing",'DayPortPlayerCallBack.DayPortPlayer_0.PlayingPB'); }catch(e){}; try{ this.flashPlayer.registerEventListener("Paused",'DayPortPlayerCallBack.DayPortPlayer_0.PausePB'); }catch(e){}; try{ this.flashPlayer.registerEventListener("ThumbNailClick",'DayPortPlayerCallBack.DayPortPlayer_0.ThumbNailClickFlashVideo'); }catch(e){}; try{ this.flashPlayer.registerEventListener("TrackURL",'DayPortPlayerCallBack.DayPortPlayer_0.pingURL');}catch(e){} try{ this.flashPlayer.registerEventListener("UnMute",'DayPortPlayerCallBack.DayPortPlayer_0.UnMutePB');}catch(e){}; try{ this.flashPlayer.registerEventListener("Volume",'DayPortPlayerCallBack.DayPortPlayer_0.VolumePB');}catch(e){}; try{ this.flashPlayer.registerEventListener("WindowsArticle",'DayPortPlayerCallBack.DayPortPlayer_0.WindowsArticlePB');}catch(e){} this.generateWindowsControls('tvPlayerVideoControls_'+this.id); try{ this.flashPlayer.setVolume(this.volumeLevel); }catch(e){}; this.objectsRegistered++; } if(registerObject == "overLay") { try{ this.liveOverlay.registerEventListener("PlayArticle",'DayPortPlayerCallBack.DayPortPlayer_0.PlayArticlePB'); }catch(e){}; try{ this.liveOverlay.registerEventListener("FullScreen",'DayPortPlayerCallBack.DayPortPlayer_0.FullScreenPB'); }catch(e){}; try{ this.liveOverlay.registerEventListener("CoverPlay",'DayPortPlayerCallBack.DayPortPlayer_0.playCP'); }catch(e){}; try{ this.liveOverlay.registerEventListener("CoverDisplay",'DayPortPlayerCallBack.DayPortPlayer_0.pauseCP'); }catch(e){}; try{ this.liveOverlay.registerEventListener("ThumbNailClick",'DayPortPlayerCallBack.DayPortPlayer_0.ThumbNailClickOverlay'); }catch(e){}; } }; DayPortPlayerCallBack.DayPortPlayer_0.onFlashLoad = function(registerObject) { //called from flash objects, have JavaScript register events for object that is ready //check the playArticle queue if registerObject is the video screen if(registerObject == "flashVideo") { this.registerEvents(registerObject); this.flashPlayer.checkTheQueue(); }else{ this.registerEvents(registerObject); } }; DayPortPlayerCallBack.DayPortPlayer_0.displayLiveStream = function(playLiveStream) { this.liveStreamIsPlaying = false; this.liveStreamIsDisplayed = false; this.windowMediaIsPlaying = false; //toggle to display the windows media object if(playLiveStream) { //windows media object already created if IE, play liveStream if(this.isIE) this.videoObject.URL = this.liveStreamAddress; else this.generateWindowsTag('tvPlayerVideoScreen_'+this.id, this.configSettings.videoWidth, this.configSettings.videoHeight, this.liveStreamObjName); this.liveStreamIsPlaying = true; this.liveStreamIsDisplayed = true; //set flash video object off screen - fireworks can't handle two flash objects on top of each other this.flashVideoContainer.style.top = '-100000px'; //hide scrubber in controls try{ this.videoControls.liveScreenControls(true); }catch(e){}; //make sure video cover in liveStream overlay is not displayed try{ this.liveOverlay.displayVideoCover(false); }catch(e){}; //make sure video cover in liveStream overlay is not displayed try{ this.videoObject.settings.volume = this.volumeLevel; }catch(e){}; //set last mute setting from flash world try{ this.videoObject.settings.mute = this.muted; }catch(e){}; //if livestream is first article and autoplay was set to false - make sure livestream doesn't start playing //autoPlayLiveStream is figured in flash object if(!this.autoPlayLiveStream) { if(this.LiveStreamPreviewImage == "null" || this.LiveStreamPreviewImage == "" || this.LiveStreamPreviewImage == "undefined") { this.LiveStreamPreviewImage = this.configSettings.defaultPreviewImage; } try{ this.liveOverlay.displayPreviewImage(this.LiveStreamPreviewImage); }catch(e){}; //destroy windows media object to simulate stop if not IE browsers if(!this.isIE) { document.getElementById('tvPlayerVideoScreen_'+this.id).innerHTML = ""; this.liveOverLayContainer.style.top = '0px'; } this.pauseCP(); }else{ //destroy windows media object to simulate stop if not IE browsers if(!this.isIE) { this.liveStreamContainer.style.top = '-'+this.defaultVideoHeight+'px'; this.liveOverLayContainer.style.top = '-100000px'; } try{ this.liveOverlay.hidePreviewImage(); }catch(e){} } if(!this.isIE) { //track Live Stream if not in ie if(this.liveStreamTrackURL != "") { var TRACKcall = new Image(); TRACKcall.src = this.liveStreamTrackURL; this.liveStreamTrackURL = ""; } } }else{ this.liveStreamIsPlaying = false; this.liveStreamIsDisplayed = false; //stop windows media object, or destroy it if non IE browser if (this.isIE) { this.videoObject.controls.Stop(); }else{ this.generateWindowsTag('tvPlayerVideoScreen_'+this.id, this.configSettings.videoWidth, this.configSettings.videoHeight, this.liveStreamObjName, true); } try{ this.videoControls.liveScreenControls(false); }catch(e){}; this.flashVideoContainer.style.top = '0px'; //set flash volume if set in windows media world try{ this.flashPlayer.setVolume(this.volumeLevel);}catch(e){} //firefox has hard time with two flash objects on top of each other, so move livestream cover container off the page if(!this.isIE) { this.liveStreamContainer.style.top = '-100000px'; this.liveOverLayContainer.style.top = '-100000px'; } //set last mute setting from windows media world if(this.muted) { this.flashPlayer.muteVideo(); }else{ this.flashPlayer.unMuteVideo(); } } }; DayPortPlayerCallBack.DayPortPlayer_0.displayWindowsMedia = function(playWMV,metaData) { this.liveStreamIsPlaying = false; this.liveStreamIsDisplayed = false; this.windowMediaIsPlaying = false; try{ this.videoControls.liveScreenControls(false); }catch(e){}; if(playWMV) { this.windowMediaIsPlaying = true; this.videoObject.controls.Stop(); //force to ping third party analytic URL for onload event this.dispatchWindowsOnLoad = true; this.videoObject.URL = metaData.articleURL; this.flashVideoContainer.style.top = '-100000px'; try{ this.videoObject.settings.volume = this.volumeLevel; }catch(e){}; try{ this.videoObject.settings.mute = this.muted; }catch(e){}; if(metaData.previewImageURL == "null" || metaData.previewImageURL == "" || metaData.previewImageURL == "undefined") { metaData.previewImageURL = this.configSettings.defaultPreviewImage; } try{ this.liveOverlay.uploadPreviewImage(metaData.previewImageURL,false); }catch(e){}; try{ this.flashPlayer.uploadPreviewImage(metaData.previewImageURL,false); }catch(e){}; try{ this.liveOverlay.displayVideoCover(false); }catch(e){}; try{ this.flashPlayer.displayLoading(true); }catch(e){}; this.windowMediaTrackURL = metaData.trackURL; if(!this.isIE) { if(this.windowMediaTrackURL != "") { var TRACKcall = new Image(); TRACKcall.src = this.windowMediaTrackURL; this.windowMediaTrackURL = ""; } } try{ this.liveOverlay.hidePreviewImage(); }catch(e){}; try{ this.liveOverlay.displayLoading(true); }catch(e){}; }else{ this.videoObject.controls.Stop(); this.videoControls.liveScreenControls(false); this.flashVideoContainer.style.top = '0px'; try{ this.flashPlayer.setVolume(this.volumeLevel);}catch(e){} if(this.muted) { this.flashPlayer.muteVideo(); }else{ this.flashPlayer.unMuteVideo(); } } }; /************************************ Loading objects *************************************/ //create windows media object DayPortPlayerCallBack.DayPortPlayer_0.generateWindowsTag = function (container, width, height, id, emulateStop) { var id = this.liveStreamObjName; if ((width == "") || (width == null) || (typeof width == "undefined")) width = "320"; if ((height == "") || (height == null) || (typeof height == "undefined")) height = "240"; var tmpObjStr = ''; //set blank WMV file to simulate stop for non IE browsers if (emulateStop == true) { tmpObjStr += ''; }else{ tmpObjStr += ''; } tmpObjStr += '' + '' + '' + '' + '' + '' + '' + '' + 'DayPortPlayerCallBack.DayPortPlayer_0.OnPlayStateChange(oldState, newState);' + '' + '' + 'DayPortPlayerCallBack.DayPortPlayer_0.OnScriptCommand(sType, sParam);' + '' + '' + 'DayPortPlayerCallBack.DayPortPlayer_0.OnBuffering(bStart);' + ''; document.getElementById(container).innerHTML = tmpObjStr; this.videoObject = document.getElementById(id); this.setVolume(this.volumeLevel); }; //create overlay for windows media object that contains dayport menu DayPortPlayerCallBack.DayPortPlayer_0.generateLiveStreamOverLay = function(container) { var id = 'tvDayPortTYPE1LiveStreamOverlay_'+this.id; if(this.isIE || DayPortUtils.system.browser == "Safari") { var objectTag = id; var embedTag = "mx_" + id + "_mz"; }else{ var objectTag = "mx_" + id + "_mz"; var embedTag = id; } var settings_string = new String(); settings_string += "&onFlashLoad=registerEvents"; settings_string += "&overlay=true"; settings_string += '&instanceID=DayPortPlayerCallBack.DayPortPlayer_0'; for(var type in this.settings) { if(this.settings[type] != null) settings_string += "&"+type+"=" + escape(this.settings[type]); } for(var type in this.configSettings) { if(type != "incomingSettings") settings_string += "&"+type+"=" + this.configSettings[type]; } for(var type in this.configSettings.incomingSettings) { if(type != "metaDataListener") settings_string += "&incomingSetting_"+type+"=" + this.configSettings.incomingSettings[type]; } settings_string = settings_string.slice(1); if(DayPortUtils.system.browser == "Internet Explorer" || DayPortUtils.system.browser == "Safari") { var tmpObj = document.createElement("object"); tmpObj.codebase = "http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=9,0,0,0"; tmpObj.width = this.defaultVideoWidth; tmpObj.height = this.defaultVideoHeight; tmpObj.id = objectTag; var paramObj = document.createElement("param"); paramObj.name = "allowScriptAccess"; paramObj.value = "always"; tmpObj.appendChild(paramObj); var paramObj = document.createElement("param"); paramObj.name = "movie"; paramObj.value = this.flashObject + '?v='+ this.version; tmpObj.appendChild(paramObj); var paramObj = document.createElement("param"); paramObj.name = "quality"; paramObj.value = "high"; tmpObj.appendChild(paramObj); var paramObj = document.createElement("param"); paramObj.name = "wmode"; paramObj.value = "transparent"; tmpObj.appendChild(paramObj); var paramObj = document.createElement("param"); paramObj.name = "flashvars"; paramObj.value = settings_string; tmpObj.appendChild(paramObj); //external interface fix for IE window[tmpObj.id] = tmpObj; //let browser create object tmpObj.classid = "clsid:d27cdb6e-ae6d-11cf-96b8-444553540000"; document.getElementById(container).appendChild(tmpObj); this.liveOverlay = document.getElementById(id); } else { var myEmbedString = ''; document.getElementById(container).innerHTML = myEmbedString; this.liveOverlay = document.getElementById(id); } }; DayPortPlayerCallBack.DayPortPlayer_0.generateFlashObject = function(container,autoPlay) { var id = 'tvDayPortTYPE1Player_'+this.id; if(this.isIE || DayPortUtils.system.browser == "Safari") { var objectTag = id; var embedTag = "mx_" + id + "_mz"; }else{ var objectTag = "mx_" + id + "_mz"; var embedTag = id; } var settings_string = new String(); settings_string += "&onFlashLoad=registerEvents"; settings_string += '&instanceID=DayPortPlayerCallBack.DayPortPlayer_0'; settings_string += '&checkTheQueue=true'; for(var type in this.settings) { if(this.settings[type] != null) settings_string += "&"+type+"=" + escape(this.settings[type]); } for(var type in this.configSettings) { if(type != "incomingSettings") settings_string += "&"+type+"=" + this.configSettings[type]; } for(var type in this.configSettings.incomingSettings) { if(type != "metaDataListener") settings_string += "&incomingSetting_"+type+"=" + this.configSettings.incomingSettings[type]; } settings_string = settings_string.slice(1); if(DayPortUtils.system.browser == "Internet Explorer" || DayPortUtils.system.browser == "Safari") { var tmpObj = document.createElement("object"); tmpObj.codebase = "http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=9,0,0,0"; tmpObj.width = this.defaultVideoWidth; tmpObj.height = this.defaultVideoHeight; tmpObj.id = objectTag; var paramObj = document.createElement("param"); paramObj.name = "allowScriptAccess"; paramObj.value = "always"; tmpObj.appendChild(paramObj); var paramObj = document.createElement("param"); paramObj.name = "movie"; paramObj.value = this.flashObject + '?v='+ this.version; tmpObj.appendChild(paramObj); var paramObj = document.createElement("param"); paramObj.name = "quality"; paramObj.value = "high"; tmpObj.appendChild(paramObj); var paramObj = document.createElement("param"); paramObj.name = "allowFullScreen"; paramObj.value = "true"; tmpObj.appendChild(paramObj); var wmodeForMZ = ""; if(this.configSettings.enableFullScreenButton!="true") { var paramObj = document.createElement("param"); paramObj.name = "wmode"; paramObj.value = "transparent"; tmpObj.appendChild(paramObj); } var paramObj = document.createElement("param"); paramObj.name = "flashvars"; paramObj.value = settings_string; tmpObj.appendChild(paramObj); //external interface fix for IE window[tmpObj.id] = tmpObj; //let browser create object tmpObj.classid = "clsid:d27cdb6e-ae6d-11cf-96b8-444553540000"; document.getElementById(container).appendChild(tmpObj); this.flashPlayer = document.getElementById(id); } else { var wmodeForMZ = ""; if(this.configSettings.enableFullScreenButton!="true") { wmodeForMZ = "wmode='transparent'"; } var myEmbedString = ''; document.getElementById(container).innerHTML = myEmbedString; this.flashPlayer = document.getElementById(id); } }; DayPortPlayerCallBack.DayPortPlayer_0.generateWindowsControls = function(container) { var id = 'tvPlayerWindowControlArea_'+this.id; if(this.isIE || DayPortUtils.system.browser == "Safari") { var objectTag = id; var embedTag = "mx_" + id + "_mz"; }else{ var objectTag = "mx_" + id + "_mz"; var embedTag = id; } var settings_string = new String(); settings_string += "&onFlashLoad=registerEvents"; settings_string += '&instanceID=DayPortPlayerCallBack.DayPortPlayer_0'; if (this.categoryID != null) { settings_string += "&categoryID="+this.categoryID; } if (this.articleID != "" && this.articleID != null) { settings_string += "&articleID="+this.articleID; } for(var type in this.configSettings) { if(type != "incomingSettings") settings_string += "&"+type+"=" + this.configSettings[type]; } for(var type in this.configSettings.incomingSettings) { if(type != "metaDataListener") settings_string += "&incomingSetting_"+type+"=" + this.configSettings.incomingSettings[type]; } settings_string = settings_string.slice(1); if(DayPortUtils.system.browser == "Internet Explorer" || DayPortUtils.system.browser == "Safari") { var tmpObj = document.createElement("object"); tmpObj.codebase = "http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=9,0,0,0"; tmpObj.width = this.defaultVideoWidth; tmpObj.height = this.controlsHeight; tmpObj.id = objectTag; var paramObj = document.createElement("param"); paramObj.name = "allowScriptAccess"; paramObj.value = "always"; tmpObj.appendChild(paramObj); var paramObj = document.createElement("param"); paramObj.name = "movie"; paramObj.value = this.controlsObject + '?v='+ this.version; tmpObj.appendChild(paramObj); var paramObj = document.createElement("param"); paramObj.name = "quality"; paramObj.value = "high"; tmpObj.appendChild(paramObj); var paramObj = document.createElement("param"); paramObj.name = "wmode"; paramObj.value = "transparent"; tmpObj.appendChild(paramObj); var paramObj = document.createElement("param"); paramObj.name = "flashvars"; paramObj.value = settings_string; tmpObj.appendChild(paramObj); //external interface fix for IE window[tmpObj.id] = tmpObj; //let browser create object tmpObj.classid = "clsid:d27cdb6e-ae6d-11cf-96b8-444553540000"; document.getElementById(container).appendChild(tmpObj); this.videoControls = tmpObj; } else { var myEmbedString = ''; document.getElementById(container).innerHTML = myEmbedString; this.videoControls = document.getElementById(id); } }; DayPortPlayerCallBack.DayPortPlayer_0.checkArticleQueue = function() { if(this.initialArticleInfo.articleID != "" && typeof(this.initialArticleInfo.articleID) != "undefined") { return this.initialArticleInfo; }else{ return false; } }; DayPortPlayerCallBack.DayPortPlayer_0.playArticle = function(articleID) { var metadata = {articleID:articleID}; this.playArticleCP({metadata:metadata}); }; DayPortPlayerCallBack.DayPortPlayer_0.registerEventListener = function(eventName,callbackFunction) { try{ this.flashPlayer.registerEventListener(eventName,callbackFunction);}catch(e){}; try{ this.liveOverlay.registerEventListener(eventName,callbackFunction);}catch(e){}; }; DayPortPlayerCallBack.DayPortPlayer_0.pauseCP = function() { //document.getElementById("debugTA").value += "\n pauseCP"; if(this.liveStreamIsPlaying) { if (this.isIE) { this.controlClick = true; try{ this.videoObject.controls.Stop(); }catch(e){} try{ this.liveOverlay.displayVideoCover(true); }catch(e){} }else{ document.getElementById('tvPlayerVideoScreen_'+this.id).innerHTML = ""; try{ this.liveOverlay.displayVideoCover(true); }catch(e){} this.liveOverLayContainer.style.top = '0px'; } }else if(this.windowMediaIsPlaying) { this.controlClick = true; try{ this.videoObject.controls.Pause(); }catch(e){} try{ this.liveOverlay.displayVideoCover(true); }catch(e){} }else{ try{ this.flashPlayer.pauseVideo();}catch(e){} try{ this.flashPlayer.displayVideoCover(true);}catch(e){} } try{ this.videoControls.enablePlayButton(true); }catch(e){}; }; DayPortPlayerCallBack.DayPortPlayer_0.playCP = function() { if(this.liveStreamIsPlaying) { if (this.isIE) { this.videoObject.controls.Play(); try{ this.videoControls.enablePlayButton(false); }catch(e){} try{ this.liveOverlay.displayVideoCover(false); }catch(e){} try{ this.liveOverlay.hideAllCovers(); }catch(e){} this.controlClick = true; }else{ this.generateWindowsTag('tvPlayerVideoScreen_'+this.id, this.configSettings.videoWidth, this.configSettings.videoHeight, this.liveStreamObjName); this.liveOverLayContainer.style.top = '-100000px'; } }else if(this.windowMediaIsPlaying) { this.videoObject.controls.Play(); try{ this.videoControls.enablePlayButton(false); }catch(e){} try{ this.liveOverlay.displayVideoCover(false); }catch(e){} try{ this.liveOverlay.hideAllCovers(); }catch(e){} try{ this.liveOverlay.hidePreviewImage(); }catch(e){} try{ this.flashPlayer.hideAllCovers(); }catch(e){} this.controlClick = true; }else{ this.flashPlayer.playVideo(); if(this.liveStreamIsDisplayed) { this.displayLiveStream(false); this.liveStreamIsDisplayed = false; } } try{ this.videoControls.enablePlayButton(false); }catch(e){}; }; DayPortPlayerCallBack.DayPortPlayer_0.muteCP = function() { if(this.liveStreamIsPlaying) { this.videoObject.settings.mute = true; }else if(this.windowMediaIsPlaying) { this.videoObject.settings.mute = true; try{ this.flashPlayer.dispatchEvent({type:"Mute"}); }catch(e){}; }else{ try{ this.flashPlayer.muteVideo();}catch(e){} } this.muted = true; }; DayPortPlayerCallBack.DayPortPlayer_0.unmuteCP = function() { if(this.liveStreamIsPlaying) { this.videoObject.settings.mute = false; }else if(this.windowMediaIsPlaying) { this.videoObject.settings.mute = false; try{ this.flashPlayer.dispatchEvent({type:"UnMute"}); }catch(e){}; }else{ try{ this.flashPlayer.unMuteVideo();}catch(e){} } this.muted = false; }; DayPortPlayerCallBack.DayPortPlayer_0.dayPortMenuCP = function() { if(this.liveStreamIsPlaying) { try{ this.liveOverlay.displayDayPortMenu();}catch(e){} }else if(this.windowMediaIsPlaying) { try{ this.liveOverlay.displayDayPortMenu();}catch(e){} }else{ try{ this.flashPlayer.displayDayPortMenu();}catch(e){} } }; DayPortPlayerCallBack.DayPortPlayer_0.seekCP = function(seekInfo) { if(this.liveStreamIsPlaying) { return; }else if(this.windowMediaIsPlaying) { this.videoObject.controls.currentPosition = seekInfo.position; try{ this.flashPlayer.dispatchEvent({type:"Seek",toPosition:seekInfo.position}); }catch(e){}; }else{ try{ this.flashPlayer.seek(seekInfo.position);}catch(e){} } }; DayPortPlayerCallBack.DayPortPlayer_0.volumeCP = function(volumeInfo) { if(this.liveStreamIsPlaying) { if (this.isIE) { //document.getElementById("debugTA").value += "\n intVolume="+intVolume; intVolume=parseInt(volumeInfo.volumeLevel,10); this.videoObject.settings.volume = intVolume; } }else if(this.windowMediaIsPlaying) { intVolume=parseInt(volumeInfo.volumeLevel,10); this.videoObject.settings.volume = intVolume; try{ this.flashPlayer.dispatchEvent({type:"Volume",level:intVolume}); }catch(e){}; }else{ try{ this.flashPlayer.setVolume(volumeInfo.volumeLevel);}catch(e){} } this.volumeLevel = parseInt(volumeInfo.volumeLevel,10); }; DayPortPlayerCallBack.DayPortPlayer_0.configSettingsCP = function(configSettingsObj) { this.flashPlayer.setVolume(this.volumeLevel); }; DayPortPlayerCallBack.DayPortPlayer_0.SearchButtonCP = function(eventObj) { if(this.windowMediaIsPlaying) { this.pauseCP(); try{ this.liveOverlay.displaySearchCover(); }catch(e){ } }else{ try{ this.flashPlayer.displaySearchCover(); }catch(e){ } } }; DayPortPlayerCallBack.DayPortPlayer_0.CategoryChangeCP = function(event) { try{ this.flashPlayer.updatePreviewDisplay(event.playList); }catch(e){ } try{ this.liveOverlay.updatePreviewDisplay(event.playList); }catch(e){ } } DayPortPlayerCallBack.DayPortPlayer_0.playArticleCP = function(articleInfo) { if(this.liveStreamIsPlaying) { this.displayLiveStream(false); }else if(this.windowMediaIsPlaying) { //do nothing for right now } //if the user switches to a category with no data, stop the video and display the preview image if(!articleInfo.metadata) { if(this.windowMediaIsPlaying) { var thisObj = this; setTimeout(function() { thisObj.displayWindowsMedia(false); try{ thisObj.flashPlayer.displayVideoCover(true);}catch(e){} try{ thisObj.flashPlayer.displayPreviewImage(true); }catch(e){} try{ thisObj.videoControls.enablePlayButton(true); }catch(e){} try{ thisObj.flashPlayer.updateVideoNameText(); }catch(e){} },100); }else{ var thisObj = this; setTimeout(function() { try{ thisObj.flashPlayer.displayPreviewImage(true); }catch(e){} try{ thisObj.flashPlayer.displayVideoCover(true);}catch(e){} try{ thisObj.videoControls.enablePlayButton(true); }catch(e){} try{ thisObj.flashPlayer.updateVideoNameText(); }catch(e){} },100); } return; } if(this.objectsRegistered >= this.objectsToBeRegistered) { try{ this.flashPlayer.playArticle(articleInfo.metadata.articleID,articleInfo.metadata);}catch(e){} }else{ this.initialArticleInfo.articleID = articleInfo.metadata.articleID; } }; DayPortPlayerCallBack.DayPortPlayer_0.DurationUpdatedPB = function(eventObj) { try{ this.videoControls.setDuration(eventObj.videoDuration); }catch(e){}; }; DayPortPlayerCallBack.DayPortPlayer_0.EndOfStreamPB = function(eventObj) { if(eventObj.adState == "loading" || eventObj.adState == "playing") return; this.videoControls.liveScreenControls(false); clearInterval(this.windowMediaPositionInterval); if(this.continuousPlay) { if(this.configSettings.playIndexLocation == "flashVideo") { var thisObj = this; setTimeout(function() { var nextArticle = thisObj.flashPlayer.playNextArticle(); },10); }else if(this.configSettings.playIndexLocation == "controls") { try{ this.videoControls.playNextArticle(); }catch(e){}; }else{ try{ this.flashPlayer.displayVideoCover(true); }catch(e){}; try{ this.videoControls.enablePlayButton(true); }catch(e){}; } }else{ try{ this.flashPlayer.displayVideoCover(true); }catch(e){}; try{ this.videoControls.enablePlayButton(true); }catch(e){}; } }; DayPortPlayerCallBack.DayPortPlayer_0.ArticleSelectedPB = function() { clearInterval(this.windowMediaPositionInterval); if(this.windowMediaIsPlaying) { this.displayWindowsMedia(false); } }; DayPortPlayerCallBack.DayPortPlayer_0.PositionUpdatedPB = function(PositionUpdated) { if(!this.windowMediaIsPlaying) { try{ this.videoControls.setDuration(PositionUpdated.videoDuration); }catch(e){}; try{ this.videoControls.updatePosition(PositionUpdated.currentPosition);}catch(e){} } }; DayPortPlayerCallBack.DayPortPlayer_0.flashBufferPB = function(bufferInfo) { if(bufferInfo.buffer >= 0 && bufferInfo.buffer <= 100) { try{ this.videoControls.bufferDisplay(bufferInfo.buffer); }catch(e){}; }else{ try{ this.videoControls.bufferDisplay(100); }catch(e){}; } }; DayPortPlayerCallBack.DayPortPlayer_0.LiveStreamPB = function(streamInfo) { var thisObj = this; this.liveStreamCallDelay = function() { if(thisObj.objectsRegistered >= thisObj.objectsToBeRegistered) { thisObj.liveStreamAddress = streamInfo.metadata.LiveStreamURL; thisObj.autoPlayLiveStream = streamInfo.metadata.autoPlayArticle; thisObj.liveStreamIsTracked = false; thisObj.liveStreamTrackURL = streamInfo.metadata.trackURL; thisObj.LiveStreamPreviewImage = streamInfo.metadata.previewImageURL; try{ thisObj.videoControls.enablePlayButton(false); }catch(e){}; thisObj.displayLiveStream(true); try{ thisObj.liveOverlay.updateArticleInfo(streamInfo.metadata); }catch(e){}; clearInterval(thisObj.liveStreamIntervalID); } } this.liveStreamIntervalID = setInterval(this.liveStreamCallDelay,10); }; DayPortPlayerCallBack.DayPortPlayer_0.MetadataRetrievedPB = function(metaInfo) { if(this.metaDataListener != null) { this.metaDataListener(metaInfo.metadata); } }; DayPortPlayerCallBack.DayPortPlayer_0.MutePB = function(muteInfo) { try{ this.videoControls.setMute(true); }catch(e){}; }; DayPortPlayerCallBack.DayPortPlayer_0.PlayingPB = function(eventObj) { try{ this.videoControls.enablePlayButton(false); }catch(e){}; if(eventObj.liveStream) { try{ this.videoControls.liveScreenControls(true); }catch(e){}; }else{ try{ this.videoControls.liveScreenControls(false); }catch(e){}; } }; DayPortPlayerCallBack.DayPortPlayer_0.PausePB = function(eventObj) { try{ this.videoControls.enablePlayButton(true); }catch(e){}; }; DayPortPlayerCallBack.DayPortPlayer_0.PlayArticlePB = function(eventObj) { this.displayLiveStream(false); if(!this.isIE) document.getElementById('tvPlayerVideoScreen_'+this.id).innerHTML = ""; this.flashPlayer.playArticle(eventObj.metadata.articleID,eventObj.metadata.metadata,eventObj.metadata.videoIndex); }; DayPortPlayerCallBack.DayPortPlayer_0.FullScreenPB = function(eventObj) { if(this.liveStreamIsPlaying && eventObj.goFullScreen) { this.videoObject.fullScreen = true; }else if(this.windowMediaIsPlaying && eventObj.goFullScreen) { this.videoObject.fullScreen = true; } }; DayPortPlayerCallBack.DayPortPlayer_0.WindowsArticlePB = function(eventObj) { var thisObj = this; function playWindowsVideo() { if(thisObj.objectsRegistered >= thisObj.objectsToBeRegistered) { try{ thisObj.videoControls.enablePlayButton(false); }catch(e){}; thisObj.displayWindowsMedia(true,eventObj.metadata); try{ thisObj.liveOverlay.updateArticleInfo(eventObj.metadata); }catch(e){}; try{ thisObj.liveOverlay.uploadLinkGraphic(eventObj.metadata.linkGraphic); }catch(e){}; clearInterval(playWindowsVideoInterval); } } var playWindowsVideoInterval = setInterval(function(){playWindowsVideo();},10); }; DayPortPlayerCallBack.DayPortPlayer_0.ThumbNailClickFlashVideo = function(eventObj) { if(eventObj.next) { try{ this.liveOverlay.nextThumbNail(); }catch(e){}; }else{ try{ this.liveOverlay.previousThumbNail(); }catch(e){}; } }; DayPortPlayerCallBack.DayPortPlayer_0.ThumbNailClickOverlay = function(eventObj) { if(eventObj.next) { try{ this.flashPlayer.nextThumbNail(); }catch(e){}; }else{ try{ this.flashPlayer.previousThumbNail(); }catch(e){}; } }; /********************** Windows Media ************************/ DayPortPlayerCallBack.DayPortPlayer_0.OnBuffering = function(bStart) { if(bStart) { try{ this.liveOverlay.displayLoading(true);}catch(e){}; }else{ try{ this.liveOverlay.displayLoading(false);}catch(e){} } }; DayPortPlayerCallBack.DayPortPlayer_0.setVolume = function(volumePercent) { if ((typeof volumePercent == "undefined") || isNaN(parseInt(volumePercent, 10))) { return false;} var maxVol = 0; var minVol = -4300; var newVol = minVol + ((maxVol - minVol) * (volumePercent / 100)); this.videoObject.Volume = newVol; this.volumeLevel = volumePercent; return true; }; DayPortPlayerCallBack.DayPortPlayer_0.setControlVolume = function(volume_level) { volume_level = Math.floor(parseInt(volume_level)); this.volumeLevel = volume_level; try{ this.videoControls.setVolume(this.volumeLevel);}catch(e){} }; DayPortPlayerCallBack.DayPortPlayer_0.pauseLiveStream = function() { this.liveStreamIsPlaying = false; try{ this.videoControls.enablePlayButton(false); }catch(e){}; if (this.isIE) { this.videoObject.Stop(); }else{ this.generateWindowsTag('tvPlayerVideoScreen_'+this.id, this.configSettings.videoWidth, this.configSettings.videoHeight, this.liveStreamObjName, true); } }; DayPortPlayerCallBack.DayPortPlayer_0.pauseFlashPlayer = function() { try{ this.flashPlayer.playPauseControl(true);}catch(e){} }; DayPortPlayerCallBack.DayPortPlayer_0.playLiveStream = function() { this.liveStreamIsPlaying = true; if (this.isIE) { this.videoObject.Play(); try{ this.videoControls.enablePlayButton(false); }catch(e){} }else{ this.generateWindowsTag('tvPlayerVideoScreen_'+this.id, this.configSettings.videoWidth, this.configSettings.videoHeight, this.liveStreamObjName); } }; DayPortPlayerCallBack.DayPortPlayer_0.displayWidowsMediaPosition = function() { var tmpCurrPos = 0; try{ tmpCurrPos = this.videoObject.controls.currentPosition; }catch(e){}; try{ this.flashPlayer.dispatchEvent({type:"PositionUpdated",currentPosition:tmpCurrPos}); }catch(e){}; try{ this.videoControls.setDuration(this.videoObject.currentMedia.duration); }catch(e){}; try{ this.videoControls.updatePosition(tmpCurrPos);}catch(e){}; if(this.videoObject.currentMedia.duration != this.currentDuration) { try{ this.flashPlayer.dispatchEvent({type:"DurationUpdated",videoDuration:this.videoObject.currentMedia.duration}); }catch(e){}; this.currentDuration = this.videoObject.currentMedia.duration; } }; DayPortPlayerCallBack.DayPortPlayer_0.OnPlayStateChange = function(newState) { //document.getElementById("debugTA").value += "\n OnPlayStateChange called newState="+newState; if(newState == 3 && this.liveStreamIsPlaying && !this.liveStreamIsTracked) { try{ this.flashPlayer.playbackCount_track();}catch(e){} this.liveStreamIsTracked = true; } if(this.liveStreamIsPlaying) { if(newState == 1 || newState == 8 || newState == 10 ) { if(this.controlClick) {this.controlClick = false; return;} this.liveStreamIsPlaying = false; //this.displayLiveStream(false); //switch to the flash player this.videoControls.liveScreenControls(false); var thisObj = this; setTimeout(function() { thisObj.displayLiveStream(false); try{ thisObj.flashPlayer.VideoEndOfStream({resultState:0}); }catch(e){} },100); } if(newState == 3) { //set last mute setting from flash world if(this.liveStreamTrackURL != "") { var TRACKcall = new Image(); TRACKcall.src = this.liveStreamTrackURL; this.liveStreamTrackURL = ""; } } } if(this.windowMediaIsPlaying) { // Handle PlayState change switch (newState) { case 0: // The playback state is undefined. this.displayWindowsMedia(false); clearInterval(this.windowMediaPositionInterval); break; case 1: // Playback is stopped. clearInterval(this.windowMediaPositionInterval); break; case 2: // Playback is paused. this.pauseCP(); clearInterval(this.windowMediaPositionInterval); try{ this.flashPlayer.dispatchAnalyticsEvent("analyticsPause"); }catch(e){}; try{ this.flashPlayer.dispatchEvent({type:"Paused"}); }catch(e){}; break; case 3: // The player is playing a stream. this.playCP(); //track playback if(this.windowMediaTrackURL != "") { var TRACKcall = new Image(); TRACKcall.src = this.windowMediaTrackURL; this.windowMediaTrackURL = ""; } try{ this.liveOverlay.displayLoading(false); }catch(e){}; try{ this.liveOverlay.displayPreviewImage(false);}catch(e){} var thisObj = this; clearInterval(this.windowMediaPositionInterval); this.windowMediaPositionInterval = window.setInterval(function(){thisObj.displayWidowsMediaPosition()},100); try{ this.flashPlayer.dispatchAnalyticsEvent("analyticsPlay"); }catch(e){}; try{ this.flashPlayer.dispatchEvent({type:"Playing"}); }catch(e){}; if(this.dispatchWindowsOnLoad) { try{ this.flashPlayer.dispatchAnalyticsEvent("analyticsLoad"); }catch(e){}; this.dispatchWindowsOnLoad = false; } break; case 4: // The player is scanning a stream in reverse. break; case 5: // The player is scanning a stream in reverse. break; case 6: // The player is buffering media. try{ this.liveOverlay.displayLoading(true); }catch(e){}; break; case 7: // The player is waiting for streaming data. break; case 8: // The player has reached the end of the media. this.videoObject.controls.Stop(); clearInterval(this.windowMediaPositionInterval); //make sure previous flash video, which is stopped, doesn't display after switching to display flash video screen try{ this.flashPlayer.videoObjAlpha(0); }catch(e){}; try{ this.flashPlayer.dispatchAnalyticsEvent("analyticsComplete"); }catch(e){}; this.flashPlayer.VideoEndOfStream({resultState:0}); this.displayWindowsMedia(false); try{ this.flashPlayer.displayLoading(false); }catch(e){}; break; case 9: // The player is preparing new media. break; case 10: // The player is ready to begin playback. try{ this.videoObject.controls.Play(); }catch(e){} break; default: } } }; DayPortPlayerCallBack.DayPortPlayer_0.OnScriptCommand = function(sType, sParam) { if(sType == "Text") { //do nothing right now - waiting for MMP //document.getElementById("debugTA").value += "\n "+sParam; //try{ this.videoControls.displayCC(sParam); }catch(e){} } }; DayPortPlayerCallBack.DayPortPlayer_0.pingURL = function(trackURL) { trackCall = new Image(); trackCall.src = trackURL.url; }; DayPortPlayerCallBack.DayPortPlayer_0.UnMutePB = function(volumeInfo) { try{ this.videoControls.setMute(false); }catch(e){}; }; DayPortPlayerCallBack.DayPortPlayer_0.VolumePB = function(volumeInfo) { try{ this.videoControls.setVolume(volumeInfo.volumeLevel); }catch(e){}; }; DayPortPlayerCallBack.DayPortPlayer_0.adjustColors = function(backgroundColorIN,buttonBackColorIN,buttonBackHoverColorIN,graphicHexColorIN,textHexColorIN) { try{ this.flashPlayer.adjustColors(backgroundColorIN,buttonBackColorIN,buttonBackHoverColorIN,graphicHexColorIN,textHexColorIN);}catch(e){} try{ this.liveOverlay.adjustColors(backgroundColorIN,buttonBackColorIN,buttonBackHoverColorIN,graphicHexColorIN,textHexColorIN);}catch(e){} try{ this.videoControls.adjustColors(backgroundColorIN,buttonBackColorIN,buttonBackHoverColorIN,graphicHexColorIN,textHexColorIN);}catch(e){} } DayPortPlayerCallBack.DayPortPlayer_0.adjustVideoSize = function(videoWidthIN,videoHeightIN) { try{ this.flashPlayer.adjustVideoSize(videoWidthIN,videoHeightIN);}catch(e){} try{ this.liveOverlay.adjustVideoSize(videoWidthIN,videoHeightIN);}catch(e){} try{ this.videoControls.adjustWidth(videoWidthIN);}catch(e){} this.defaultVideoWidth = videoWidthIN; this.defaultVideoHeight = videoHeightIN; this.flashPlayer.width = this.defaultVideoWidth+'px'; this.flashPlayer.height = this.defaultVideoHeight+'px'; this.videoControls.width = this.defaultVideoWidth+'px'; /*this.liveOverlay.width = this.defaultVideoWidth; this.liveOverlay.height = this.defaultVideoHeight; if (this.isIE) { this.videoObject.width = this.defaultVideoWidth; this.videoObject.height = this.defaultVideoHeight; }*/ this.playerVideoArea.style.width = this.defaultVideoWidth+'px'; this.playerVideoArea.style.height = this.defaultVideoHeight+'px'; this.playerVideoArea.style.clip = 'rect(0,'+this.defaultVideoWidth+'px,'+this.defaultVideoHeight+'px,0)'; this.flashVideoContainer.style.width = this.defaultVideoWidth+'px'; this.flashVideoContainer.style.height = this.defaultVideoHeight+'px'; this.PlayerVideoDisplayArea.style.width = this.defaultVideoWidth+'px'; this.PlayerVideoDisplayArea.style.height = this.defaultVideoHeight+'px'; this.PlayerVideoDisplayArea.style.clip = 'rect(0,'+this.defaultVideoWidth+'px,'+this.defaultVideoHeight+'px,0)'; } DayPortPlayerCallBack.DayPortPlayer_0.embed();