<!--
//Esta funcion bloquea el click derecho del raton para evitar el acceso al codigo fuente del sistema
            var msg="Este Sitio le Pertenece al Grupo U Travel - U Travel Service";

            function IE(){
            if (event.button==2){
            alert(msg);
            return false;
            }
            }

            function NS(e){
            if (document.layers||document.getElementById&&!document.all){
            if (e.which==2||e.which==3){
            alert(msg);
            return false;
            }
            }
            }

            if (document.layers){
            document.captureEvents(Event.MOUSEDOWN);
            document.onmousedown=NS;
            }
            else if (document.all&&!document.getElementById){
            document.onmousedown=IE;
            }
            document.oncontextmenu=new Function("alert(msg);return false")
-->

