You might try this java script. It'll keep the rookies off. If you shut off Java then they have access.Goes in <head> area
<script LANGUAGE="JavaScript1.1"><!-- Begin
function right(e) {
if (navigator.appName == 'Netscape' &&
(e.which == 3 || e.which == 2))
return false;
else if (navigator.appName == 'Microsoft Internet Explorer' &&
(event.button == 2 || event.button == 3)) {
alert("Your name here - Copyright 2000 - All Rights Reserved");
return false;
}
return true;
}
document.onmousedown=right;
if (document.layers) window.captureEvents(Event.MOUSEDOWN);
window.onmousedown=right;
// End -->
</script>
In Netscape a right click is rendered useless and in explorer you get a copyright popup screen with right click disabled...
Rod