      <MM:BeginLock translatorClass="MM_SSI" type="ssi_include" depFiles="Z:\include\js\lib_nav.inc" orig="%3C!--#include file=%22../include/js/lib_nav.inc%22--%3E" >
      function _obj(nome,tipo){
        if(document.getElementById&&document.getElementsByTagName){
          if(tipo=="id"||tipo==null||tipo==""){
            this.objeto=document.getElementById(nome);
            this.estilo=document.getElementById(nome).style;
          }else if(tipo=="tag"){
            this.objeto=document.getElementsByTagName(nome);
            this.escopo=document.getElementsByTagName(nome).length;
          }
        }else if(document.all){
          this.objeto=document.all[nome];
          this.estilo=document.all[nome].style;
        }else if(document.layers){
          this.objeto=NS4(document,nome);
          this.estilo=this.objeto;
        }
      }
      function NS4(path,obj){
        var elementos=path.layers; var elementoExato;
        for(var i=0;i<=elementos.length();i++){
          if(elementos[i].id==obj) elementoExato=elementos[i];
          else if(elementos[i].layers.length){
		  	var temp=NS4(elementos[i],obj);
		  }
          if(temp) elementoExato=temp;
        }
        return elementoExato;
      }

      function loader(funcao){
        var oldonload=window.onload;
        if(typeof window.onload!='function'){
          window.onload=funcao;
        }else{
          window.onload=function(){
            oldonload();
            funcao();
          };
        }
      }

      //uso : pop('pasta/arquivo.htm','420','380','janelaPopUp');
      //obs : o parametro NOME nao deve iniciar com algarismos numericos, nem conter pontos (.), espacos e hifens (-).
      //obs : parametrosGerais nao e obrigatorio e deve ser preenchido com os paramentros default de window.open
      //      pop('pasta/arquivo.htm','420','380','janelaPopUp','scrollbars,resizable');
      function pop(uri,largura,altura,nome,parametrosGerais){
        var janela;
        if(parametrosGerais==null||parametrosGerais==""){
          janela=window.open(uri,nome,'width='+largura+',height='+altura);
          janela.focus();
        }else{
          janela=window.open(uri,nome,'width='+largura+',height='+altura+','+parametrosGerais);
          janela.focus();
        }
      }
<MM:EndLock>
