unless you use Javascript against left-clicks (VERY ANNOYING), no.
Also, that script you use with the anti-right-click is useless
(
Howto get passed Anti-Right-Click alert boxes), use this code:
<SCRIPT LANGUAGE="JavaScript">
<!--
document.oncontextmenu = function(){return false}
if(document.layers) {
window.captureEvents(Event.MOUSEDOWN);
window.onmousedown = function(e){
if(e.target==document)return false;
}
}
else {
document.onmousedown = function(){return false}
}
if (self.location == top.location)
{
top.location.replace("index.htm");
}
//-->
</SCRIPT>
Also, if you want to block the little box with the save button appearing, add an ISMAP to the tag.
Example:
<IMG SRC="image.bmp" ISMAP ALT="">
Hope this helps!