function fGetVideo( pstrID_Video ) { //--- Ajax : inizio $.ajax({ url: 'include/ajax/getVideo.php' , data: 'command=getVideo&pstrID_Video=' + pstrID_Video , success: function(data) { // Ritorno : Inizio update = data.split('|'); if( update[0] == 'getVideo' ) { $('#videoCodice').html( update[2] ); $('.line-side').removeClass('side-on'); $('#box-side-'+update[1]).addClass('side-on'); if ( false && update[3] ) { $("a[href*=.flv]").flowplayer("swf/flowplayer-3.1.1.swf", { // change the default controlbar to tube plugins: { controls: { url: '/swf/flowplayer.controls-3.1.1.swf', // display properties such as size, location and opacity background: '#333', backgroundGradient: [0.9, 0.3], // controlbar specific settings buttonColor: '#000000', buttonOverColor: '#669900', progressColor: '#222222', progressGradient: 'medium', bufferColor: '#669900', timeColor: '#9DCC47', tooltipColor: '#669900', tooltipTextColor: '#ffffff', all: false, play: true, scrubber: true, volume: true, mute: true, fullscreen: true, time: true, // tooltips (since 3.1) tooltips: { buttons: true, fullscreen: 'Visualizza a schermo intero', fullscreenExit: 'Esci dalla visualizzazione a schermo intero', unmute: 'Ascolta', pause: 'Pausa' } } }}); //$f(0).play(); } } // Ritorno : Fine } }); //--- Ajax : inizio }