>>2
Not how to overcome them. Looking for examples. like:
<script language=javascript>
function rcDisabled() {
if (event.button==2) {
alert('Sorry, no right-clicking allowed.');
return false;
}
}
document.onmousedown=rcDisabled;
document.oncontextmenu=rcDisabled;
</script>
eh?