   function launchVideo(video)
   {
    var html = "  <div id=\"light\">"
             + "   <div id=\"lightboxContent\">"
             + "    <div id=\"lightboxContentVideo\"></div>"
             + "   </div>"
             + "  </div>";
    
    $.prompt(html);
    
    var flashvars = { file: '/videos/' + video + '.flv&autostart=true' };
    var params = { menu: false, allowfullscreen: true, allowscriptaccess: 'sameDomain', allownetworking: 'all', bgcolor: '#000000' };
    var attributes = {};
    swfobject.embedSWF( "/flashs/player.swf", "lightboxContentVideo", "600", "300", "9.0.0", "/flashs/expressInstall.swf",flashvars, params, attributes );
   }
