// JavaScript Document
///  Configuracion  /////////////////////////////////////////////////
///  Variables globales
var bEntorno = "1";
///  Deshabilitar el botón derecho del ratón
function NoRaton(e) {
	if(bEntorno == "1") {
	    if (document.layers && (e.which == 3 || e.which == 2)) alert("Botón derecho del ratón deshabilitado.");
	    else if (event.button == 2 || event.button == 3) alert("Botón derecho del ratón deshabilitado.");
		return false;
	}
}
document.onmousedown = NoRaton;
if (document.layers) window.captureEvents(Event.MOUSEDOWN);
window.onmousedown = NoRaton;
/////////////////////////////////////////////////////////////////////

