Hi
delete the current code from fixy/js/functions.js file or make theme comment.
$('a.external').click(function(event){
event.preventDefault();
var address= $(this).attr('href');
$('body').prepend('<div class="body-overlay-on-image"></div>');
$('body').append('<div class="iframe-temp-area"><iframe class="iframe-temp" src="'+ address +'"/></div>');
$('.iframe-temp-area').windowCenter();
$(".body-overlay-on-image").on("click",function(){
$(".body-overlay-on-image").remove();
$(".iframe-temp-area").remove();
});
});