function launch_player() { 

flowplayer("a.myPlayer", "../../flow_player/flowplayer.commercial-3.1.5", {
		   
		  // product key from your account 
	key: '#$a628adc11f7ff62f356',
	
		   // these properties are common for each clip in the playlist 
	clip : { 
	
		onFinish: function() {
			
		// SplashImage at end of clip 
			  var splashPlugin = this.getPlugin('splashImage');
			  splashPlugin.show(1000);
			  this.stop();
			},
	provider: 'lighttpd'
								}, 
	
	plugins: {
 
    // the default controlbar is called "controls". by tweaking this, you can modify the default controlbar 
    controls: {
		        // controlbar-specific configuration  
      	url: '../../flow_player/flowplayer.controls-3.1.5.swf',
        autoHide: 'always',
		backgroundColor: '#0d080c',
      	bufferGradient: 'none',
      	sliderColor: '#525252',
     	sliderGradient: 'none',
      	buttonColor: '#E79CA0',
      	buttonOverColor: '#000000',
      	progressColor: '#E79CA0',
      	durationColor: '#ffffff',
      	borderRadius: '0px',
      	backgroundGradient: [0.6,0.3,0,0,0],
      	timeColor: '#ffffff',
      	bufferColor: '#575757',
      	progressGradient: 'medium',
   		opacity:1.0,


        play:true,      
        volume:true, 
        mute:true,  
        time:true,  
        stop:false, 
        playlist:false,  
        fullscreen:true,
		autoBuffering:true,
		autoPlay:false,
		bufferLength:3      
    },
	lighttpd: { 
            url: '../../flow_player/flowplayer.pseudostreaming-3.1.3.swf' 
        },
	splashImage: {
		url: '../../flow_player/flowplayer.content-3.2.0.swf',
		display: 'none',
		top: 0,
		left: 0,
		width: 800,
		height: 452,
		opacity: 1.0,
		border: '0px solid',
		backgroundColor: '#000000',
		backgroundGradient: [0.0, 0.0],
		html: '<a href="javascript:btnJoin();"><img src="../../flow_player/splash-800x452.jpg" vspace="0" hspace="0" /></a>',
		onMouseOver: function() {this.setStyle({opacity:1.0});}
				}
			
}
});

}
