/*
	JSUI_EventsManager
*/
JSUI_EventsManager = new Object();

/* void */ JSUI_EventsManager.stopEventPropagation = function (/* event */ e) {
	if (!e) var e = window.event;
	e.cancelBubble = true;
	if (e.stopPropagation) e.stopPropagation();
}