/* Deshabilita el menu del boton derecho tanto en mouse como en teclado
	document.oncontextmenu = function(){return false}
   if(document.layers) {
      window.captureEvents(Event.MOUSEDOWN);
      window.onmousedown = function(e){
		    window.status = "";
          if(e.target==document)return false;
         }
     }
   else {
      document.onmousedown = function(){return false}
    }
*/
	
	var MsgUser = "All Rights Reserved – Banco General.\rWe are at your service, call 800-5000";
	function DisRClick(btnClick)
	{
		if (navigator.appName == "Netscape" && btnClick.which == 3) 
		{   alert(MsgUser);
			return false;	}
		else if (navigator.appName =="Microsoft Internet Explorer" && event.button == 2) 
		{	alert(MsgUser);
			return false;    }
	}
document.onmousedown = DisRClick;

