$('.go_view').click(function(){
$('.pop_up').stop().fadeIn();
// $('body').addClass('fixed');
$('body').on('scroll touchmove mousewheel', function(event) {
event.preventDefault();
event.stopPropagation();
return false;
});
});
$('.close').click(function(){
$('.pop_up').stop().fadeOut();
// $('body').removeClass('fixed');
$('body').off('scroll touchmove mousewheel');
});