Si pero por que no hacemos algo un poco más efectivo....
En JavaScript existe una opcion que consiste en deshabiliar el boton derecho en nuestra pagina nunca lo habeis visto?....
Haciendo eso séria algo más incomodo de copiar tu contenido web...
Os dejo lo que yo tengo por si os sirve.
Lo hice en el instituto
Como ves en el body llamo a la funcion que contiene el archivo javascript
Código HTML:
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<title>Documento sin título</title>
<script language="javascript" src="Include/ejercicio19.js" type="text/javascript">
</script>
</head>
<body OnContextMenu="BotonDerecho()" >
<img src="Imagen.bmp" />
</body>
</html>
Código:
// JavaScript Document
document.oncontextmenu=true;
function BotonDerecho()
{
document.oncontextmenu=function(){
alert('No estas autorizado a utilizar ese boton');
return false;};
}