Several solutions:
To disable right click: <norightclick all=”true”>
To disable images only: <norightclick all=”images”>
Add to BODY tage to disable right click on whole page: <body oncontextmenu=”return false;”>
Change the TAG to disable right click on specific images: <img src=”no-more-yourimage.gif” width=”250″ height=”250″ oncontextmenu=”return false”>
Disable CUT and PASTE: <body ondragstart=”return false” onselectstart=”return false”>
Disable page printing:
<style media=”print”>
<–
BODY {
display:none;
}
–>
</style>