By adding oncontextmenu="return false" to a HTML tag you can disable the context menu that appears when you right click.
Added to the BODY tag prevents the context menu appearing when the mouse is right clicked on the document body.
<img src="image.gif" oncontextmenu="alert('Added to the IMG tag');return false">
<P oncontextmenu="alert('Added to the P tag');return false">This is a paragraph</P>
<div style="width:100; height:50" oncontextmenu="alert('Added to a layer');return false">A Layer</div>
ondragstart="return false" onselectstart="return false"