﻿$(function () {
    $("#loader").hide();
});

function ShowPopup(PopUpName, OpeningPageName) {
    $.get("/Popup/" + PopUpName, { OpeningPageName: OpeningPageName }, function (data) {

        $(".content").append(data);

        var width = $("#content_main").width();
        var height = $(".content").height();
        var offset = $("#content_main").offset();

        $(".popup").width(width).height(height).offset(offset);
        $(".popup").fadeIn();
    });
}

function OpenVideoPopup(VideoFile, Title, Height, Width, OpeningPageName) {
    $.post('/Popup/Video', { VideoFile: VideoFile, Title: Title, Height: Height, Width: Width, OpeningPageName: OpeningPageName }, function (data) {
        $(".content").append(data);

        var width = $("#content_main").width();
        var height = $(".content").height();
        var offset = $("#content_main").offset();

        $(".popup").width(width).height(height).offset(offset);
        $(".popup").fadeIn();    
    });
}

function ClosePopup() {
    $(".popup").fadeOut(function () {
        $(".popup").remove();
    });
}
