function video_play_large(playerid)
{
flowplayer(playerid, "/script/media/flowplayer-3.2.3.swf", {
				buffering : true,
				clip: {
					bufferLength: 10,
					autoBuffering: true,
					scaling: 'fit'
					},	
				plugins: { 
					controls: { 
						url: '/script/media/flowplayer.controls-3.2.2.swf', 
						opacity: 0.5,
						backgroundGradient: 'none',
						backgroundColor: '#150C5D',
						bufferColor: '#666666',
						progressColor: '#ffffff',
						volumeSliderColor: '#666666',
						buttonColor: '#ffffff',
						buttonOverColor: '#999999',
						autoHide: 'always',
						hideDelay: 1000,
						all:false,
						play:true, 
						scrubber:true,
						volume:true, 
						mute:true, 
						fullscreen:true,
						width: '95%',
						bottom: 5,
						borderRadius: 10} 
					}}
			);
}

function video_play_small(playerid, splashimage, videopath)
{
flowplayer(playerid, "/script/media/flowplayer-3.2.3.swf", {
				buffering : true,
				clip: {
					bufferLength: 10
					},
				playlist: [ {url: splashimage}, {url: videopath, 
						autoPlay: false,
						autoBuffering:false } ],	
				plugins: { 
					controls: { 
						url: '/script/media/flowplayer.controls-3.2.2.swf', 
						opacity: 0.5,
						backgroundGradient: 'none',
						backgroundColor: '#150C5D',
						bufferColor: '#666666',
						progressColor: '#ffffff',
						volumeSliderColor: '#666666',
						buttonColor: '#ffffff',
						buttonOverColor: '#999999',
						autoHide: 'always',
						hideDelay: 1000,
						all:false,
						play:true, 
						scrubber:true,
						volume:true, 
						mute:true,
						fullscreen:true,
						width: '95%',
						bottom: 5,
						borderRadius: 10} 
					}}
			);
}

