Javascript can easily fix that problem, however this only works if the user clicks the right-click button, but there are always other ways to veiw sources, like View --> Source for one...
But in any case use this:
<script language=JavaScript>
<!--
var message="Put you're message here.";
function click(e)
{
if (document.all)
{
if (event.button == 2)
{
alert(message);
return false;
}
}
if (document.layers)
{
if (e.which == 3)
{
alert(message);
return false;
}
}
}
if (document.layers)
{
document.captureEvents(Event.MOUSEDOWN);
}
document.onmousedown=click;
// -->
</script>
Put this in the <head> tag of the HTML page and it'll do the trick in NS and IE...if you wanna use this on multiple pages, put this script in a new file, like righclick.js, and just call this file on all pages, this way if you have to modify the message, you only do it once and not on all the pages that this script resides on...
If you need more help, just ask...
Laterz...
I have not failed; I merely found 100,000 different ways of not succeding...