﻿setTimeout('playerload()', 1000);

function playerload1() {
    flowplayer('a.videoPlayer',
	{ src: '/SimpleSite/Public/VideoPlayer/flowplayer-3.2.1.swf', wmode: 'opaque' },
	{ clip: { autoPlay: false, autoBuffering: true },
	    plugins:
		{ controls: { url: '/SimpleSite/Public/VideoPlayer/flowplayer.controls-3.2.0.swf',
		    height: 24,
		    backgroundColor: '#E9E9E9',
		    timeBgColor: '#E9E9E9',
		    timeColor: '#000000',
		    durationColor: '#000000',
		    volumeSliderColor: '#C9C9C9'
		}
		}
	});
}

function playerload() {
    flowplayer('a.videoPlayer',
	{ src: '/SimpleSite/Public/VideoPlayer/flowplayer-3.2.1.swf', wmode: 'opaque' },
	{ clip: { autoPlay: false, autoBuffering: false,
	    onBeforeBegin: function() {
	        flowplayer('a.videoPlayer').close();
	    } 
	},
	    plugins:
		{ controls: { url: '/SimpleSite/Public/VideoPlayer/flowplayer.controls-3.2.0.swf', autoHide: false, fullscreen: false, scrubber: false, time: false, mute: false
		}
		}
	});
}