function launch_player() { 

flowplayer("a.myPlayer", "../../../flowplayer/flowplayer.commercial-3.0.7.swf", {
		   
		   		  // product key from your account 
	key: '#$3871abe0b92398601f0',
		   
		   // these properties are common for each clip in the playlist 
	clip : { 
   		onStart: function(clip) { 
     
        // send clip's URL to Google Analytics 
        pageTracker._trackPageview(clip.url);}     
								}, 
	
	plugins: {
 
    // the default controlbar is called "controls". by tweaking this, you can modify the default controlbar 
    controls: {
		        // controlbar-specific configuration  
      
        autoHide: 'always',
		backgroundColor: '#0d080c',
      	bufferGradient: 'none',
      	sliderColor: '#525252',
     	sliderGradient: 'none',
      	buttonColor: '#ec27e5',
      	buttonOverColor: '#000000',
      	progressColor: '#d043bc',
      	durationColor: '#ffffff',
      	borderRadius: '0px',
      	backgroundGradient: [0.6,0.3,0,0,0],
      	timeColor: '#000000',
      	bufferColor: '#575757',
      	progressGradient: 'medium',
   		opacity:1.0,


        play:true,      
        volume:true, 
        mute:true,  
        time:true,  
        stop:false, 
        playlist:false,  
        fullscreen:false
    } 
}
});

}