/* configuracion parametros videos flowplayer 3.1.2 */
flowplayer("player_new", "flowplayer/flowplayer-3.1.5.swf", {
         
    plugins:  { 
        controls: { 
        
        	// setup auto hide 
	        autoHide: 'always',    
             
            // tooltips configuration 
            tooltips: { 
                 
                // enable english tooltips on all buttons 
                buttons: true, 
                
                // customized texts for buttons 
                play: 'Reproducir', 
                pause: 'Parar', 
                fullscreen: 'Pantalla Completa',
                fullscreenExit: 'Salir de pantalla completa'
            }, 
             
            // background color for all tooltips 
            tooltipColor: '#112233', 
             
            // text color 
            tooltipTextColor: '#FFFFFF'  
        } 
    },
    
    // pause on first frame of the video 
    clip: { 
        autoPlay: false,
        autoBuffering: true,
        bufferLength: 5
    } 
     
});

if (document.getElementById('player_new2')){
/* configuracion parametros videos flowplayer 3.1.2 */
flowplayer("player_new2", "flowplayer/flowplayer-3.1.5.swf", {
         
    plugins:  { 
        controls: { 
        
        	// setup auto hide 
	        autoHide: 'always',    
             
            // tooltips configuration 
            tooltips: { 
                 
                // enable english tooltips on all buttons 
                buttons: true, 
                 
                // customized texts for buttons 
                play: 'Reproducir', 
                pause: 'Parar', 
                fullscreen: 'Pantalla Completa',
                fullscreenExit: 'Salir de pantalla completa'
            }, 
             
            // background color for all tooltips 
            tooltipColor: '#112233', 
             
            // text color 
            tooltipTextColor: '#FFFFFF'  
        } 
    },
    
    // pause on first frame of the video 
    clip: { 
        autoPlay: false,
        autoBuffering: true,
        bufferLength: 5
    } 
     
});


}