/*
 * Enumerations
 *
 * Global enumerations available in BECAPI.
 */
 
var EventType = {
	blur: 'blur',
	click: 'click',
	doubleClick: 'dblclick',
	focus: 'focus',
	load: 'load',
	mouseDown: 'mousedown',
	mouseOut: 'mouseout',
	mouseOver: 'mouseover',
	mouseUp: 'mouseup',
	submit: 'submit'
};

/*

If we want this to work we either have to move contents of ContextMenu.js to objects.js or we have to include ContextMenu.js before this file.

var ContextMenus = {
	'application/pdf': [new ContextMenuOption(this.href, 'Open'), new ContextMenuOption(this.href, 'Open in New Window', function(){this.contextMenu.onOptionClick();window.open(this.href, 'DocumentWindow', 'dependent,width=' + ((screen.availHeight/4) * 3) + ',height=' + screen.availHeight + ',resizable');return false;}), new ContextMenuSeparator(), new ContextMenuOption(this.href + '?download', 'Download'), new ContextMenuSeparator(), new ContextMenuOption(this.href + '?save', 'Save in My Files')]
};
*/