<!-- Deshabilita el bot&oacute;n derecho del rat&oacute;n

var mensaje = "Copyright &copy; 2005-2006. Herves-Vida. Reservados todos los derechos.";
var mostrado = 0;

function mostrar()
	{
		if (mostrado == 0)
			{
				mostrado = 1;
				alert(mensaje);
				return false;
			}
	}

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(); 
     				} 
    		} 
   	} 

if (document.layers)
	{ 
    	document.captureEvents(Event.MOUSEDOWN); 
    }

document.onmousedown = click;

document.oncontextmenu = new Function("mostrar(); mostrado = 0; return false;");

// -->