[SIZE=3]Disable Right Click[/SIZE]
Open /skins//customer/index.tpl and replace the tag to:
<body oncontextmenu="return false;">
```[B][SIZE=3]Disable Text Selection<br />
<br />
1.<br />
<br />
[/SIZE][/B]Open /skins/<youractiveskin>/customer/common_templates/scripts.tpl and add the following code:<br />
<br />
```php
<script type="text/javascript"><br />
function disableSelection(target){<br />
if (typeof target.onselectstart!="undefined") //IE route<br />
target.onselectstart=function(){return false}<br />
else if (typeof target.style.MozUserSelect!="undefined") //Firefox route<br />
target.style.MozUserSelect="none"<br />
else //All other route (ie: Opera)<br />
target.onmousedown=function(){return false}<br />
target.style.cursor = "default"<br />
}<br />
</script>
```[SIZE=3][B]2.[/B][/SIZE]<br />
<br />
Open /skins/<youractiveskin>/customer/index.tpl and add this code at the very end of the document before the </body> tag:<br />
<br />
```php
{literal}<script type="text/javascript"><br />
disableSelection(document.body) //disable text selection on entire body of page<br />
</script>{/literal}
```Of course the tips above will not secure your content to 100% against stealing of text ("View Source or Page Source" browser functions) or downloading of your images by other way as just through right click, but it makes save from people who don't have much computer or browsers experience.<br />
<br />
[B]If you will use the "Disable Text Selection" function the "Customization mode" and "Translation mode" will not work.[/B]<br />
<br />
[B]You can see an example here: [/B][URL]http://www.cscartdemo.martfox.com[/URL]<br />
<br />
UPDATE: As Jesse said, there are some issues with it, but maybe can some one fix it so to be working with in all situations.