<!-- Deshabilita el botón derecho del ratón

var fecha = new Date();
var ano = fecha.getFullYear();
var mensaje = "Copyright © " + ano + ". Isabel Gan. Reservados todos los derechos.";
var mostrado = 0;

function mostrar()
	{
		if (mostrado == 0)
			{
				mostrado = 1;
				alert(mensaje);
				return false;
			}
	}

// Controlamos el botón derecho del ratón.
function click(e)
	{ 
		if (document.all && event.button == 2)
			{ 
		    	alert(mensaje);
				return false; 
		    }
		if (document.layers || (document.getElementById && !document.all))
			{ 
				if (e.which == 2 || e.which == 3)
					{ 
		   			 	mostrar(); 
     				}
    		} 
   	} 

// Capturamos el botón del ratón.
if (document.layers)
	{ 
    	document.captureEvents(Event.MOUSEDOWN); 
    }

document.onmousedown = click;

document.oncontextmenu = new Function("mostrar(); mostrado = 0; return false;");

// -->