var video_popup = null;
var DIV_POPUP_NEW = "DIV_POPUP_NEW";

$(document).ready(function(){

        video_popup = new JQueryPopup({
            id: DIV_POPUP_NEW,
            width: 540,
            height: 380,
            zIndex: 100002,
            headerVisible: false,
            overlayAlpha: 30,
            popupBackground: '#000',
            imageCloseUrl: ABSOLUTE_URL + 'public/shared/images/delete_min.png',
            imageCloseAlt: 'Chiudi',
            clickOutToClose: true,

    //        onRemove: function(e) {
    //            if (!confirm("Sicuro?")) e.cancel = true;
    //        },

            draggable: false,
            resizable: false

        });


});


function show_video(id_video){

    $.ajax({
           type: "POST",
           url: ABSOLUTE_SITE_URL + '/frontend/show_video/',
           data: ({
                video_id: id_video
           }),
           dataType: "text",
           success: function(res){
                video_popup.show();
                video_popup.html(res);

                flowplayer("player", ABSOLUTE_URL + 'public/frontend/flowplayer/flowplayer-3.2.2.swf');

            },
           error:function(){
                alert("errore chiamata ajax");
           }
        });

    return false;
}

