function navigacija(bgcolor, width, height, url_link) {

    $.setupJMPopups({
        screenLockerBackground: "#"+bgcolor,
        screenLockerOpacity: "0.9"
    });

    $.openPopupLayer({
        name: "navigacija" ,
        width: width,
        height: height,
        url: url_link
    });

    
}

function video(movie) {

    $.setupJMPopups({
        screenLockerBackground: "#ec008c",
        screenLockerOpacity: "0.9"
    });

    $.openPopupLayer({
        name: "video" ,
        width: 420,
        height: 320,
        url: "video.php?movie="+movie
    })
}

function video_outside(movie) {

    $.setupJMPopups({
        screenLockerBackground: "#ec008c",
        screenLockerOpacity: "0.9"
    });

    $.openPopupLayer({
        name: "video" ,
        width: 420,
        height: 320,
        url: "video_outside.php?movie="+movie
    })
}

function image(image) {

    $.setupJMPopups({
        screenLockerBackground: "#ec008c",
        screenLockerOpacity: "0.9"
    });

    $.openPopupLayer({
        name: "image" ,
        width: 600,
        height: 400,
        url: "image.php?image="+image
    })
}
