function cancelBubble() {
  if (typeof(event.stopPropagation) == 'function') event.stopPropagation();  // Mozilla
  if (typeof(event.cancelBubble) == 'boolean') event.cancelBubble = true;  // IE & Opera
}

