Ok maybe you have experienced writing your own original entry only to find out that other sites just copied and pasted it without your permission or even a link back to your entry.

Here’s how to disable right-click, copy and paste on your site.

Insert this code anywhere after the <head> and before the </head> tags of your site’s source.

<script language=’JavaScript1.2′>
function disableselect(e){
return false
}
function reEnable(){
return true
}
document.onselectstart=new Function (“return false”)
if (window.sidebar){
document.onmousedown=disableselect
document.onclick=reEnable
}

</script>

You can try it and see if it works.