// JavaScript Document

// Funcionalidad: Desactivar Botón derecho // DESACTIVADA
/*
window.onload = function() {
   document.onselectstart = function() {return false;} // ie
   document.onmousedown = function() {return false;} // mozilla
}
<!-- Begin
//deshabilitar botón derecho
document.oncontextmenu = function(){return false;}
//deshabilitar selección texto e imágenes
function event_false() {window.event.returnValue = false;}
document.onselectstart = event_false;
// End -->
*/
