iF you want a no right clicking just on your images paste this inside your <head> tags...
this will make no right clicking but not as a whole page...
just the images...
<script type="text/javascript">
<!--
//No right click on images
function iCapImg(evt){
var evt = (evt)? evt : ((window.event)? event : null);
if(evt){
var elem = (evt.target)? evt.target : ((evt.srcElement)? evt.srcElement : null);
if(elem){
if(elem.tagName == "IMG" && elem.tagName.toLowerCase() == "img"){
if(evt.cancelBubble){
evt.cancelBubble = true;
}
alert("Sorry, menu not available");
return false;
}
}
}
}
document.oncontextmenu = iCapImg;
//-->
</script>
PREVIEW