Disable Right Click
From KOP KB
Honestly try your hardest not to do this. Also explain to the customer this does prevent people from taking their images. Is best used in the body tag.
<div oncontextmenu="return false;">
<!--
Whatever content your wrapping it around goes in between these div tags
-->
whatever image or code
</div>
JS Disable
appears to work in everything that is not related to firefox
<SCRIPT LANGUAGE="javascript">
function click() {
if (event.button==2) {
alert('Sorry, this function is disabled.')
}
}
document.onMouseDown=click
</SCRIPT>