﻿function openBox() {
    $(".black_bg_Main_Gallery").css({ "opacity": "0.8" });
    $('body').css('overflow', 'hidden');
    $('#FixedBox').css({ 'display': '' });
}

function closeBox() {
    $('#FixedBox').css({ 'display': 'none' });
    $('body').css('overflow', 'scroll');
}
function openBox_CV() {
    $(".black_bg_Main_Gallery").css({ "opacity": "0.8" });
    $('body').css('overflow', 'hidden');
    $('[id$=FixedBox_CV]').css({ 'display': '' });
}

function closeBox_CV() {
    $('[id$=FixedBox_CV]').css({ 'display': 'none' });
    $('body').css('overflow', 'scroll');
}
