<!--
function stopPropagation(e) {
  if(e.stopPropagation) {
    e.stopPropagation();
  }
  else {
    e.cancelBubble = true;
  }
}
-->
