function ConvertFlvVideoLink(siteRootPath) {    
    $("[href$='.flv']").each(function () {
        $(this).css('display', 'block');
        $(this).css('height', '375px');
        $(this).css('width', '500px');
        if (this.id == null || this.id == '') {

            this.id = Math.floor(Math.random() * 9999);
        }
        this.innerHTML= '';        
        flowplayer(this.id, siteRootPath + "/FlowPlayer/flowplayer-3.2.6.swf", {
            clip: {
                autoPlay: false,
                autoBuffering: false
            },
            plugins:
               {
                   controls:
                    {
                        backgroundGradient: 'medium',
                        progressGradient: 'medium',
                        bufferGradient: 'none',
                        sliderGradient: 'none',
                        autoHide: 'fullscreen',
                        play: true,
                        volume: true,
                        mute: true,
                        time: true,
                        stop: false,
                        playlist: false,
                        fullscreen: false,
                        scrubber: true,
                        backgroundColor: '#000000',
                        timeColor: '#01daff',
                        durationColor: '#ffffff',
                        progressColor: '#015b7a',
                        bufferColor: '#6c9cbc',
                        sliderColor: '#000000',
                        buttonColor: '#889aa4',
                        buttonOverColor: '#92b2bd'
                    }
               }
        });
    });       
}

