function eventCatch(msg) {
  alert(msg);
}
document.onclick = function() {
  eventCatch('document');
}

