Añade este código:
(Información y parte del código recolectado de hotscripts.com)
Código:
<script language=javascript>
function oprimeIE() {
if (document.all) {
return false;
}
}
function oprimeNS(e) {
if (document.layers||(document.getElementById&&!document.all)) {
if (e.which==2||e.which==3) {
return false;
}
}
}
if (document.layers) {
document.captureEvents(Event.mousedown);
document.onmousedown=oprimeNS;
}
else{
document.onmouseup=oprimeNS;
document.oncontextmenu=oprimeIE;
}
document.oncontextmenu=new Function("return false")
</script>