Buenisimos dias
existe un kodigo para blokear el boton derecho del raton, pero en realidad no hay forma de proteger tus imagenes si las tienes publicadas en la web, por k kon una visita a los temporales de internet k kedan en tu ekipo resuelto, otra manera kon la tekla de imprimir pantalla y despues pegando en un progama para grafikos ya tienes la imagen;
Komo konsejo, io partiria la imagen en varias, las montaria en la pagina en una tabla y ademas l pondria el kodigo para el boton derecho, ademas de una reseña en todas las paginas haciendo referencia al y kopiraigt de la pagina y su kontenido.
akontinuacion te paso el kodigo para anular el boton derecho, uni kamente modifica ladireccion de la ventita y la lerta k kieras k ponga haciendo referencia a los derechos reservados--->
============================================================
Script: No-Right-Click Script Launches PopUp Window
Functions: Blocks right-click on mouse and launches a popup
window.
Browsers: NS4-7, IE4 & later
Author: etLux
============================================================
Put the following script in the head of your page:
<script language="JavaScript">
// Script Source: CodeLifter.com
// Copyright 2003
// Do not remove this header.
// ----------- Setups ------------------
// Set the address, width, height, top
// and left dimensions for the popup
// window below.
// -------------------------------------
PopUpURL = "
http://www.fox.com";
PopUpLeft = 100;
PopUpTop = 100;
PopUpWidth = 500;
PopUpHeight = 100;
// -------------------------------------
// Do not edit anything below this line.
// -------------------------------------
isIE=document.all;
isNN=!document.all&&document.getElementById;
isN4=document.layers;
popO='left='+PopUpLeft+',top='+PopUpTop+',width='+PopUpWidth+',height='+PopUpHeight
if (isIE||isNN){
document.oncontextmenu=checkV;
}else{
document.captureEvents(Event.MOUSEDOWN || Event.MOUSEUP);
document.onmousedown=checkV;}
function checkV(e){
if (isN4){
if (e.which==2||e.which==3){
dPUW=window.open(PopUpURL,'nrc',popO);
return false;
}}else{
dPUW=window.open(PopUpURL,'nrc',popO);
return false;}}
</script>
Additional Notes:
In the popup window that you open with this script, you may
wish to add onload="self.focus()" to the body tag, as shown
immediately below. This forces the popup to come to the
front.
<body onload='self.focus()'>
===========================[end]============================
y este otro k no deja seleccionar nada de la pagina ;)-->
<script language="JavaScript">
<!--
function event_false() {
window.event.returnValue = false
}
document.onselectstart = event_false
//-->
</script>
Pero recuerda k en realidad es imposible proteger los kontenidos; aunke al menos lo proteges de una gran mayoria. En ultimo kaso puedes tratar de encriptar el html, hay progrmas para ello, si te interesa te mando uno.