﻿var oPlayer=null;var isPlayerReady=false;var isPlayerPlaying=false;function playVideo(videoPlaceHolderId,flashVideoFile,vWidth,vHeight){flashembed(videoPlaceHolderId,{src:'media/swf/FlowPlayerDark.swf',width:vWidth,height:vHeight,wmode:'transparent'},{config:{autoPlay:true,usePlayOverlay:false,controlBarBackgroundColor:'0xFE9901',initialScale:'scale',videoFile:flashVideoFile,showFullScreenButton:false,showMenu:false}})}function playVideoMinBar(videoPlaceHolderId,flashVideoFile,vWidth,vHeight){oPlayer=flashembed(videoPlaceHolderId,{src:'media/swf/FlowPlayerDark.swf',width:vWidth,height:vHeight,wmode:'transparent'},{config:{autoPlay:false,usePlayOverlay:false,controlBarBackgroundColor:-1,initialScale:'scale',videoFile:flashVideoFile,showFullScreenButton:false,showMenu:false,showVolumeSlider:false,controlBarGloss:'low',splashImageFile:'media/images/video1.jpg',controlsOverVideo:'ease'}})}function playPause(){if(oPlayer==null||!isPlayerReady)return;if(!isPlayerPlaying){oPlayer.DoPlay();isPlayerPlaying=true}else{oPlayer.Pause();isPlayerPlaying=false}}function onFlowPlayerReady(){isPlayerReady=true;isPlayerPlaying=false}
