function film() {
	if (document.getElementById("film")) {
			flowplayer("film", "flash/flowplayer-3.1.3.swf", {
			plugins:  { 
					controls: { 
					url: 'flash/flowplayer.controls-3.1.3.swf', 
             
					// tooltips configuration 
					tooltips: { 
						
						// enable tooltips on all buttons 
						buttons: true, 
						
						// customized texts for buttons 
						play: 'Otdwórz', 
						pause: 'Pauza',
						fullscreen: 'Pełny ekran',
						mute: 'Wycisz',
						fullscreenExit: 'Wyjście z pełnego ekranu' 
					}, 
					autoHide: 'always',
					
					// background color for all tooltips 
					tooltipColor: '#112233', 
					
					// text color 
					tooltipTextColor: '#8899ff'  
				}
			},
			screen: {         
				top:0, right:0 
			},
			play: {
				replayLabel:'Odtwórz ponownie'
			},
			clip: { 
				autoPlay: true, 
				autoBuffering: true,
				onStart: function() {$f().mute();}
			}
		});
	}
}
