window.document.onkeydown = function(e) { if (!e) { e = event; } if (e.keyCode == 27) { lightbox_close(); } } function lightbox_open() { var lightBoxVideo = document.getElementById("FrontPageVideo"); document.body.style.overflow = 'hidden'; document.getElementById('light').style.display = 'block'; document.getElementById('fade').style.display = 'block'; lightBoxVideo.currentTime = 0; lightBoxVideo.play(); } function lightbox_close() { var lightBoxVideo = document.getElementById("FrontPageVideo"); document.body.style.overflow = ''; document.getElementById('light').style.display = 'none'; document.getElementById('fade').style.display = 'none'; lightBoxVideo.pause(); }