// JavaScript Document

staying_in_site = false;

Event.observe(document.body, 'click', function(event) {
  if (Event.element(event).tagName == 'A') {
    staying_in_site = true;
  }
  if (Event.element(event).tagName == 'INPUT') {
    staying_in_site = true;
  }
  if (Event.element(event).tagName == 'IMG') {
    staying_in_site = true;
  }
});


window.onunload = popup;

function popup() {
  if(staying_in_site) {
    return;
  }
  bailoutwindow = window.open("bailout.html","video","menubar=0,resizable=0,status=0,toolbar=0,location=no,directories=0,scrollbars=0,width=360,height=375");
}
