Modifying contribution "Disable right click"

jasonh1234 <[email protected]> 31 Jul 2003 10:23:07 -0000
Newsgroups gmane.comp.web.oscommerce.tips
Message-ID <b9a3d0dbde1b0ca8a302f2e809164153@osCommerce-Forums>
This message was sent from: Tips and Tricks
http://forums.oscommerce.com/viewtopic.php?p=204962#204962
----------------------------------------------------------------

I've installed this contribution and it's cool and all, but does anyone know if it could be modified to block Opera as well?

Also how would one modify this so that the code affects enlarged product image java pop up windows as well?

The contribution is basically...
Paste this into your catalog/includes/header.php

[code]<script language=javascript>
<!-- Begin
function right(e) {
var msg = "Right-clicking is not possible in this document.";
if (navigator.appName == 'Netscape' && e.which == 3) {
alert(msg);
return false;
}
else
if (navigator.appName == 'Microsoft Internet Explorer' &&
event.button==2) {
alert(msg);
return false;
}
return true;
}
document.onmousedown = right;
// End -->
-->
</script>[/code]