Web Sites - Disable right-click on an image

Copy this code and paste in your html page:

<script language="JavaScript" type="text/javascript">
function popupMsg(theMsg) 
{
  alert(theMsg);
}
</script>

And use with images using this code:

IMG SRC="someImage.jpg" onMouseDown="popupMsg('Clicking is disabled.')