// Capturar Pulsacion del Boton Derecho del Raton 
function click(){ 
	if (event.button==2) { alert('Esta web está protegida') } 
	} 
document.onmousedown=click 

