function showClip(videoFile)
                {
          
        var bgcolor = '0xdddddd';
        try{
                bgcolor = ui.design_color_movie_box.replace('#','0x');
        }catch( e){
        }
        
        flashembed("player_placeholder", 
   
                                /* 
                                                first argument supplies standard Flash parameters. See full list:
                                                http://kb.adobe.com/selfservice/viewContent.do?externalId=tn_12701
                                */
      {
         src:'flowplayer/FlowPlayerLight.swf',
                                                width: 388, 
                                                height: 300
      },
                                
      /*
                                                second argument is Flowplayer specific configuration. See full list:
                                                http://flowplayer.org/player/configuration.html
                                */
      {config: {   
                                                videoFile: videoFile,
                                                autoPlay: true,
                                                autoRewind: true,
                                                initialScale: 'scale',
                                                loop: false,
                                                controlBarBackgroundColor: bgcolor,
                                                menuItems: [ true, true, true, true, true, false],
                                                showFullScreenButton: false
      }} 
   );
    }
