document.oncontextmenu = NoContextMenu;
document.onmousedown = NoRightClick;

function NoRightClick()
{	
	if (event.button==2)  {
		return false;
	}
}

function NoContextMenu()
{
	return false;
}
