
function startflow() {
	
//			document.getElementById("startrunway").style.display="none";
			document.getElementById("player").style.display="block";
			document.getElementById("imglarge").style.display="none";
	
			var play=flowplayer("player", "../../videos/flowplayer-3.1.1.swf",  
			{
				// use the first frame of the video as a "splash image"     
				clip: {         
					autoPlay: true,         
					autoBuffering: true     
				},
				// controlbar settings     
				plugins:  {         
					controls: { 
					// setup a background image 
					background: 'url(../../images/site09/satin_bar.jpg)', 
					/* you may want to remove the gradient */             
					// backgroundGradient: 'none',                          
					// these buttons are visible             
					hideDelay:1500,
					all:false,             
					scrubber:true,             
					play:true, 
					stop:true,
                        
					// custom colors             
					bufferColor: '#333333',             
					progressColor: '#cc0000',                         
					buttonColor: '#cc0000',             
					buttonOverColor: '#ff0000',                          
					// tooltip background color (since 3.1.0)             
					tooltipColor: '#cc0000',                          
					// custom height             
					height: 30,                          
					// setup auto hide             
					autoHide: 'always',                                      
					// a little more styling                          
					width: '98%',              
					bottom: 5,             
					left: '50%',             
					borderRadius: 15                       
					}     
				},
				 
		    // when playback is finished we are performing unload.     
			onFinish: function() {         
				this.unload();
			},

			// when the stop button is pressed.     
			onStop: function() {         
				this.unload();
			},
			
			onUnload: function() {
				document.getElementById("player").style.display="none";
				document.getElementById("imglarge").style.display="block";
//				document.getElementById("startrunway").style.display="block";
			}
		});
			
		return play;
}
