﻿jQuery(document).ready(function() {
    jQuery(".newsMore").click(function(e) {
        e.preventDefault();

        showModal();
    });

    jQuery("#mask").click(function() {
        hideModal();
    });
    jQuery("#closeBox").click(function() {
        hideModal();
    });
});

function showModal() {
    var maskHeight = jQuery(document).height();
    var maskWidth = jQuery(document).width();

    jQuery('#mask').css({ 'width': maskWidth, 'height': maskHeight });

    jQuery('#mask').fadeIn(500);

    var winH = jQuery(window).height();
    var winW = jQuery(window).width();

    jQuery('#popup_Container').css('top', winH / 2 - jQuery('#popup_Container').height() / 2 + jQuery(window).scrollTop());
    jQuery('#popup_Container').css('left', winW / 2 - jQuery('#popup_Container').width() / 2);

    jQuery('#popup_Container').fadeIn(500);
}

function hideModal() {
    jQuery('#mask').hide();
    jQuery('#popup_Container').hide();
}
