just add the lower 2 the header and it will work 4 u , everything below the
line. But ppl can still steal in view source
<script language="JavaScript">
<!--
// No rightclick script v.2.5
// (c) 1998 Blah Blah Blah
// Blah Blah
// Change this
var message="Sorry, This site is protected by copy rite "no right clicks
here"";
// Don't edit below!
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>