function showVideo(path){
	var preview= '<a href="'+path+'" style="display:block;width:570px;height:350px" id="player"></a>'; 	
	$("#videopreview").html(preview);
	flowplayer("player", "/swf/flowplayer.commercial-3.1.5.swf",{ 
        key: '$105b27f93d52735b288',
        logo: { 
         
            // default logo and its position 
            url: '/style/site_images/logo_video.png', 
            top: 20, 
            right: 20, 
            opacity: 0.4, 
         
            // for SWF-based logos you can supply a relative size (to make the logo larger in fullscreen) 
//            width: '6.5%', 
//            height: '6.5%', 
         
            // if set to false, then the logo is also shown in non-fullscreen mode 
            fullscreenOnly: false, 
         
            // time to display logo (in seconds). 0 = show forever 
            displayTime: 0, 
         
            /* 
                if displayTime > 0 then this specifies the time it will take for 
                the logo to fade out. this happens internally by changing the opacity 
                property from its initial value to full transparency. 
                value is given in milliseconds. 
            */ 
            fadeSpeed: 0, 
         
            // for commercial versions you can specify where the user is redirected when the logo is clicked 
            linkUrl: 'http://www.sciyo.com' 
        },    
        clip : {
            autoPlay: true, 
            autoBuffering: true 
        } 
    });
}