|

Here's
a script to put in the BODY of your page to prevent others from
copying your graphics or code. Check it out by right clicking on
this page!
<script language="JavaScript"> <!--
//from http://www.roxydoll12.com
var message="Sorry,
this is a no right click zone.";
// YOU CAN WRITE WHATEVER MESSAGE YOU LIKE 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>
|