﻿
function StopEvents(e)
{ // if clicked, no action <a> will continue
  try {
   e.stopPropagation(); 
   e.preventDefault();
  } catch (ex) {}
  try {
   e.cancelBubble = true;
   e.returnValue = false;
  } catch (ex) {}
}

