$f("player", "/players/flowplayer.commercial-3.1.3.swf", 
			{
			key: '$af17995283b67006ac1',
			/* onMouseOver: function () { var el = document.getElementById("rtmpInfo");
                 el.innerHTML = "Video file served: " + this.getClip().completeUrl; },*/ 

        clip: 
            {
            url: flashembed.isSupported([9, 115]) && !force_flv ? 'mp4:' + curr_video + '-' + bandwidth + '.mp4' : curr_video + '-' + bandwidth,

            // configure clip to use influxis as our provider, it uses our rtmp plugin
            provider: 'influxis',
            
            autoPlay: auto_play,
            autoRewind:false,
            autoBuffering: true,
            bufferLength: 3,
            
				
            onBufferEmpty: function(clip) { this.getPlugin('content').show(); },
            onBufferFull: function(clip) { this.getPlugin('content').hide(); },
            
            onStart: function(clip) { pageTracker._trackEvent("FreeVideos", "Play", clip.url); },
            onFinish: function(clip) { pageTracker._trackEvent("FreeVideos", "Finish", clip.url); },
            onPause: function(clip) { pageTracker._trackEvent("FreeVideos", "Pause", clip.url, parseInt(this.getTime())); },
            onStop: function(clip) { pageTracker._trackEvent("FreeVideos", "Stop", clip.url, parseInt(this.getTime())); },
            onResume: function(clip) { pageTracker._trackEvent("FreeVideos", "Resume", clip.url); }
            },
  
        // streaming plugins are configured under the plugins node
        plugins: 
            {
            // here is our rtpm plugin configuration
            influxis: 
                {
                url: '/players/flowplayer.rtmp-3.1.2.swf',
                // netConnectionUrl defines where the streams are found
                netConnectionUrl: 'rtmp://qjrqla18.rtmphost.com/freevideos'
                }
                ,
            controls: 
                {
                mute: false
                } 
                ,
            content: 
                { 
                // the only required property 
                url: '/players/flowplayer.content-3.1.0.swf', 
                // some display properties 
                height: small_vid ? 180 : 220, 
                padding:30, 
                backgroundColor: '#112233', 
                opacity: 0.85,  // 0.7 
                
                // one styling property 
                backgroundGradient: [0.1, 0.1, 1.0], 
                
                // content plugin specific properties 
                html: '<p>Please wait a few seconds while the video buffers...<br>The time will vary depending upon the speed of your internet connection.</p>', 
                style: small_vid ? {p: {fontSize: 18}} : {p: {fontSize: 30}} 
                } 
        } 
		});		
