function swapContextMenu (e) {
	if (e && e.preventDefault)
		e.preventDefault()
	return false;
}

if(window.addEventListener)
	window.addEventListener("contextmenu",swapContextMenu,true);
else if (window.attachEvent)
	document.oncontextmenu = swapContextMenu;