No copy
You can disable the select function of your web page and thus disabling the copying function of the web page.
<script type="text/JavaScript">function killCopy(e){return false}function reEnable(){return true}document.onselectstart=new Function ("return false")if (window.sidebar){document.onmousedown=killCopydocument.onclick=reEnable}</script>
Just add the above code to the head tag of your web page. Now I will show few useful scripts without description. I think only the title is enough.
Right Click Message code
<script language='JavaScript' type='text/JavaScript'>var tenth='';function ninth() {if (document.all) {(tenth);alert("Right Click Disable"); return false;}}function twelfth(e) {if (document.layers||(document.getElementById&&!document.all)) {if (e.which==2||e.which==3) {(tenth);return false;}}}if (document.layers) {document.captureEvents(Event.MOUSEDOWN);document.onmousedown=twelfth;}else{document.onmouseup=twelfth;document.oncontextmenu=ninth;}document.oncontextmenu=new Function('alert("Right Click Disable"); return false')</script>
Left click Right Click Message code
<body onmousedown="alert('disable'); return false;">
Right Click Silent Disable code
<body oncontextmenu="return false;">
Image Right Click Message code
<img src="http://gumoti.blogspot.com/uploads/1/2/3/0/12309515/1357477089.png"
onmousedown="alert('This image is copyrighted!');return false;">
<script type="javascript">function protect(){alert("This image is copyrighted!");return false;}</script>
Image Right Click Silent Disable code
<IMG border=0 src="http://gumoti.blogspot.com/uploads/1/2/3/0/12309515/1357477089.png" oncontextmenu="return false;">
Image drag and drop Message code
<script langauge="javascript">function onDrag(){alert("selected");
}</script>
<div id="myDic" onmousedown="onDrag()"><img src="http://gumoti.blogspot.com/uploads/1/2/3/0/12309515/1357477089.png" ></div>
Image drag and drop Silent Disable code
<IMG border=0 src="http://gumoti.blogspot.com/uploads/1/2/3/0/12309515/1357477089.png" onselectstart="return false;" ondragstart="return false;">