function openVideo() { if ($('#popup').size()) { $('#popup').fadeOut(function () { $(this).remove(); }); $('#popup-back').fadeOut(function () { $(this).remove(); }); return false; } $('body').append(''); $('#popup, #popup-back').hide(); $('#popup').css({'top': $(window).scrollTop() + $(window).height()*0.2, background: 'none' }); $('#popup').html(''); $('#popup-back').fadeIn(); $('#popup').fadeIn(); $('#popup-back').click(function () { openVideo(); }); }