var message="Derechos Reservados FINANCIERA MEXICO, \nS.A. DE C.V. S.F.O.M., E.N.R.";
 
function Mantener(oWebPanel, oEvent){
    oEvent.cancel=true; 
}

function CerrarAviso(oWebPanel, oEvent){
    oEvent.cancel=true;
    if(oWebPanel.getVisible()){
        oWebPanel.setVisible(false);
    }
}

 function click(e) {
 	if (document.all) {
 		if (event.button==2||event.button==3) {
 			alert(message);
 			return false;
		 }
 	}
 	 if ((document.layers)||(window.navigator.userAgent.toLowerCase().indexOf('gecko') != -1)) {
 		if (e.which == 3) {
 			alert(message);
 			return false;
 		}
 	}
 }

 if ((document.layers)||(window.navigator.userAgent.toLowerCase().indexOf('gecko') != -1)) {
 	document.captureEvents(Event.MOUSEDOWN);
 }
 document.onmousedown=click;


