20
| <![CDATA[<script type="text/javascript"><!--
// remote scripting library
// (c) copyright 2005 modernmethod, inc
var sajax_debug_mode = false;
var sajax_request_type = "POST";
var sajax_target_id = "";
var sajax_failure_redirect = "";
function sajax_debug(text) {
if (sajax_debug_mode)
alert(text);
}
function sajax_init_object() {
sajax_debug("sajax_init_object() called..")
var A;
var msxmlhttp = new Array(
'Msxml2.XMLHTTP.5.0',
'Msxml2.XMLHTTP.4.0',
'Msxml2.XMLHTTP.3.0',
'Msxml2.XMLHTTP',
'Microsoft.XMLHTTP');
for (var i = 0; i < msxmlhttp.length; i++) {
try {
A = new ActiveXObject(msxmlhttp[i]);
} catch (e) {
A = null;
}
}
if(!A && typeof XMLHttpRequest != "undefined")
A = new XMLHttpRequest();
if (!A)
sajax_debug("Could not create connection object.");
return A;
}
var sajax_requests = new Array();
function sajax_cancel() {
for (var i = 0; i < sajax_requests.length; i++)
sajax_requests[i].abort();
}
//adicionado funcao htmlentities direto no js que monta o GET request
function htmlEntities(str) {
return String(str).replace(/&/g, '&').replace(/</g, '<').replace(/>/g, '>').replace(/"/g, '"');
}
function sajax_do_call(func_name, args) {
var i, x, n;
var uri;
var post_data;
var target_id;
sajax_debug("in sajax_do_call().." + sajax_request_type + "/" + sajax_target_id);
target_id = sajax_target_id;
if (typeof(sajax_request_type) == "undefined" || sajax_request_type == "")
sajax_request_type = "GET";
uri = "/biblioteca/atos_normativos.php";
if (sajax_request_type == "GET") {
if (uri.indexOf("?") == -1)
uri += "?rs=" + escape(func_name);
else
uri += "&rs=" + escape(func_name);
uri += "&rst=" + escape(sajax_target_id);
uri += "&rsrnd=" + new Date().getTime();
for (i = 0; i < args.length-1; i++)
uri += "&rsargs[]=" + htmlEntities(escape(args[i]));
post_data = null;
}
else if (sajax_request_type == "POST") {
post_data = "rs=" + escape(func_name);
post_data += "&rst=" + escape(sajax_target_id);
post_data += "&rsrnd=" + new Date().getTime();
for (i = 0; i < args.length-1; i++)
post_data = post_data + "&rsargs[]=" + escape(args[i]);
}
else {
alert("Illegal request type: " + sajax_request_type);
}
x = sajax_init_object();
if (x == null) {
if (sajax_failure_redirect != "") {
location.href = sajax_failure_redirect;
return false;
} else {
sajax_debug("NULL sajax object for user agent:\n" + navigator.userAgent);
return false;
}
} else {
x.open(sajax_request_type, uri, true);
// window.open(uri);
sajax_requests[sajax_requests.length] = x;
if (sajax_request_type == "POST") {
x.setRequestHeader("Method", "POST " + uri + " HTTP/1.1");
x.setRequestHeader("Content-Type", "application/x-www-form-urlencoded");
}
x.onreadystatechange = function() {
if (x.readyState != 4)
return;
sajax_debug("received " + x.responseText);
var status;
var data;
var txt = x.responseText.replace(/^\s*|\s*$/g,"");
status = txt.charAt(0);
data = txt.substring(2);
if (status == "") {
// let's just assume this is a pre-response bailout and let it slide for now
} else if (status == "-")
alert("Error: " + data);
else {
if (target_id != "")
document.getElementById(target_id).innerHTML = eval(data);
else {
try {
var callback;
var extra_data = false;
if (typeof args[args.length-1] == "object") {
callback = args[args.length-1].callback;
extra_data = args[args.length-1].extra_data;
} else {
callback = args[args.length-1];
}
callback(eval(data), extra_data);
} catch (e) {
sajax_debug("Caught error " + e + ": Could not eval " + data );
}
}
}
}
}
sajax_debug(func_name + " uri = " + uri + "/post = " + post_data);
x.send(post_data);
sajax_debug(func_name + " waiting..");
delete x;
return true;
}
// wrapper for ajax_set_idioma
function x_ajax_set_idioma() {
sajax_do_call("ajax_set_idioma",
x_ajax_set_idioma.arguments);
}
// wrapper for ajax_mostra_filtro_campus
function x_ajax_mostra_filtro_campus() {
sajax_do_call("ajax_mostra_filtro_campus",
x_ajax_mostra_filtro_campus.arguments);
}
// wrapper for ajax_mostra_filtro
function x_ajax_mostra_filtro() {
sajax_do_call("ajax_mostra_filtro",
x_ajax_mostra_filtro.arguments);
}
// wrapper for ajax_resultados
function x_ajax_resultados() {
sajax_do_call("ajax_resultados",
x_ajax_resultados.arguments);
}
// wrapper for ajax_adiciona_cesta_todos
function x_ajax_adiciona_cesta_todos() {
sajax_do_call("ajax_adiciona_cesta_todos",
x_ajax_adiciona_cesta_todos.arguments);
}
// wrapper for ajax_adiciona_cesta_pagina
function x_ajax_adiciona_cesta_pagina() {
sajax_do_call("ajax_adiciona_cesta_pagina",
x_ajax_adiciona_cesta_pagina.arguments);
}
// wrapper for ajax_dados_acervo
function x_ajax_dados_acervo() {
sajax_do_call("ajax_dados_acervo",
x_ajax_dados_acervo.arguments);
}
// wrapper for ajax_dados_exemplar
function x_ajax_dados_exemplar() {
sajax_do_call("ajax_dados_exemplar",
x_ajax_dados_exemplar.arguments);
}
// wrapper for ajax_dados_referencia
function x_ajax_dados_referencia() {
sajax_do_call("ajax_dados_referencia",
x_ajax_dados_referencia.arguments);
}
// wrapper for ajax_dados_marc
function x_ajax_dados_marc() {
sajax_do_call("ajax_dados_marc",
x_ajax_dados_marc.arguments);
}
// wrapper for ajax_dados_colecao
function x_ajax_dados_colecao() {
sajax_do_call("ajax_dados_colecao",
x_ajax_dados_colecao.arguments);
}
// wrapper for ajax_lista_sumarios
function x_ajax_lista_sumarios() {
sajax_do_call("ajax_lista_sumarios",
x_ajax_lista_sumarios.arguments);
}
// wrapper for ajax_dados_reserva
function x_ajax_dados_reserva() {
sajax_do_call("ajax_dados_reserva",
x_ajax_dados_reserva.arguments);
}
// wrapper for ajax_mostra_req_material
function x_ajax_mostra_req_material() {
sajax_do_call("ajax_mostra_req_material",
x_ajax_mostra_req_material.arguments);
}
// wrapper for ajax_mostra_armazem
function x_ajax_mostra_armazem() {
sajax_do_call("ajax_mostra_armazem",
x_ajax_mostra_armazem.arguments);
}
// wrapper for ajax_mostra_classificacao
function x_ajax_mostra_classificacao() {
sajax_do_call("ajax_mostra_classificacao",
x_ajax_mostra_classificacao.arguments);
}
// wrapper for ajax_dados_local
function x_ajax_dados_local() {
sajax_do_call("ajax_dados_local",
x_ajax_dados_local.arguments);
}
// wrapper for ajax_mostra_comentarios
function x_ajax_mostra_comentarios() {
sajax_do_call("ajax_mostra_comentarios",
x_ajax_mostra_comentarios.arguments);
}
// wrapper for ajax_busca_pessoaComentario
function x_ajax_busca_pessoaComentario() {
sajax_do_call("ajax_busca_pessoaComentario",
x_ajax_busca_pessoaComentario.arguments);
}
// wrapper for ajax_valida_acesso
function x_ajax_valida_acesso() {
sajax_do_call("ajax_valida_acesso",
x_ajax_valida_acesso.arguments);
}
// wrapper for ajax_GravaComentario
function x_ajax_GravaComentario() {
sajax_do_call("ajax_GravaComentario",
x_ajax_GravaComentario.arguments);
}
// wrapper for ajax_acervo_detalhes
function x_ajax_acervo_detalhes() {
sajax_do_call("ajax_acervo_detalhes",
x_ajax_acervo_detalhes.arguments);
}
// wrapper for ajax_mostra_comentario_geral
function x_ajax_mostra_comentario_geral() {
sajax_do_call("ajax_mostra_comentario_geral",
x_ajax_mostra_comentario_geral.arguments);
}
// wrapper for ajax_busca_pessoa
function x_ajax_busca_pessoa() {
sajax_do_call("ajax_busca_pessoa",
x_ajax_busca_pessoa.arguments);
}
// wrapper for ajax_gravar
function x_ajax_gravar() {
sajax_do_call("ajax_gravar",
x_ajax_gravar.arguments);
}
// wrapper for ajax_mostra_sugestoes
function x_ajax_mostra_sugestoes() {
sajax_do_call("ajax_mostra_sugestoes",
x_ajax_mostra_sugestoes.arguments);
}
// wrapper for ajax_gravar2_novo
function x_ajax_gravar2_novo() {
sajax_do_call("ajax_gravar2_novo",
x_ajax_gravar2_novo.arguments);
}
// wrapper for ajax_tela_cesta
function x_ajax_tela_cesta() {
sajax_do_call("ajax_tela_cesta",
x_ajax_tela_cesta.arguments);
}
// wrapper for ajax_adiciona_cesta_acervo
function x_ajax_adiciona_cesta_acervo() {
sajax_do_call("ajax_adiciona_cesta_acervo",
x_ajax_adiciona_cesta_acervo.arguments);
}
// wrapper for ajax_marc
function x_ajax_marc() {
sajax_do_call("ajax_marc",
x_ajax_marc.arguments);
}
// wrapper for ajax_referencia_janela
function x_ajax_referencia_janela() {
sajax_do_call("ajax_referencia_janela",
x_ajax_referencia_janela.arguments);
}
// wrapper for ajax_dados_acervo_janela
function x_ajax_dados_acervo_janela() {
sajax_do_call("ajax_dados_acervo_janela",
x_ajax_dados_acervo_janela.arguments);
}
// wrapper for ajax_mostra_login
function x_ajax_mostra_login() {
sajax_do_call("ajax_mostra_login",
x_ajax_mostra_login.arguments);
}
// wrapper for ajax_valida_acesso_novo
function x_ajax_valida_acesso_novo() {
sajax_do_call("ajax_valida_acesso_novo",
x_ajax_valida_acesso_novo.arguments);
}
// wrapper for ajax_grava_cesta_permanente
function x_ajax_grava_cesta_permanente() {
sajax_do_call("ajax_grava_cesta_permanente",
x_ajax_grava_cesta_permanente.arguments);
}
// wrapper for ajax_mostra_autores_assuntos
function x_ajax_mostra_autores_assuntos() {
sajax_do_call("ajax_mostra_autores_assuntos",
x_ajax_mostra_autores_assuntos.arguments);
}
// wrapper for ajax_apaga_acervo_cesta
function x_ajax_apaga_acervo_cesta() {
sajax_do_call("ajax_apaga_acervo_cesta",
x_ajax_apaga_acervo_cesta.arguments);
}
// wrapper for ajax_consulta_refinamento
function x_ajax_consulta_refinamento() {
sajax_do_call("ajax_consulta_refinamento",
x_ajax_consulta_refinamento.arguments);
}
// wrapper for ajax_buscaComentario
function x_ajax_buscaComentario() {
sajax_do_call("ajax_buscaComentario",
x_ajax_buscaComentario.arguments);
}
// wrapper for ajax_remove_cesta_acervo
function x_ajax_remove_cesta_acervo() {
sajax_do_call("ajax_remove_cesta_acervo",
x_ajax_remove_cesta_acervo.arguments);
}
// wrapper for ajax_redepergamum
function x_ajax_redepergamum() {
sajax_do_call("ajax_redepergamum",
x_ajax_redepergamum.arguments);
}
// wrapper for ajax_detalhes_redes
function x_ajax_detalhes_redes() {
sajax_do_call("ajax_detalhes_redes",
x_ajax_detalhes_redes.arguments);
}
// wrapper for ajax_autoridade_remissiva
function x_ajax_autoridade_remissiva() {
sajax_do_call("ajax_autoridade_remissiva",
x_ajax_autoridade_remissiva.arguments);
}
// wrapper for ajax_exemplares_id
function x_ajax_exemplares_id() {
sajax_do_call("ajax_exemplares_id",
x_ajax_exemplares_id.arguments);
}
// wrapper for ajax_pesquisa_cursos_mkt
function x_ajax_pesquisa_cursos_mkt() {
sajax_do_call("ajax_pesquisa_cursos_mkt",
x_ajax_pesquisa_cursos_mkt.arguments);
}
// wrapper for ajax_monta_links
function x_ajax_monta_links() {
sajax_do_call("ajax_monta_links",
x_ajax_monta_links.arguments);
}
// wrapper for ajax_gera_qr_code
function x_ajax_gera_qr_code() {
sajax_do_call("ajax_gera_qr_code",
x_ajax_gera_qr_code.arguments);
}
// wrapper for ajax_login_senha
function x_ajax_login_senha() {
sajax_do_call("ajax_login_senha",
x_ajax_login_senha.arguments);
}
// wrapper for ajax_cria_lista_link
function x_ajax_cria_lista_link() {
sajax_do_call("ajax_cria_lista_link",
x_ajax_cria_lista_link.arguments);
}
// wrapper for ajax_apaga_acervo_cesta_armazem
function x_ajax_apaga_acervo_cesta_armazem() {
sajax_do_call("ajax_apaga_acervo_cesta_armazem",
x_ajax_apaga_acervo_cesta_armazem.arguments);
}
// wrapper for ajax_gera_qr_code_armazem
function x_ajax_gera_qr_code_armazem() {
sajax_do_call("ajax_gera_qr_code_armazem",
x_ajax_gera_qr_code_armazem.arguments);
}
// wrapper for ajax_dados_dublin_core
function x_ajax_dados_dublin_core() {
sajax_do_call("ajax_dados_dublin_core",
x_ajax_dados_dublin_core.arguments);
}
// wrapper for ajax_mostra_ajuda
function x_ajax_mostra_ajuda() {
sajax_do_call("ajax_mostra_ajuda",
x_ajax_mostra_ajuda.arguments);
}
var TabbedPanels1 = "";
function MM_showHideLayers() { //v9.0
var i,p,v,obj,args=MM_showHideLayers.arguments;
for (i=0; i<(args.length-2); i+=3)
with (document) if (getElementById && ((obj=getElementById(args[i]))!=null)) { v=args[i+2];
if (obj.style) { obj=obj.style; v=(v=='show')?'visible':(v=='hide')?'hidden':v; }
obj.visibility=v; }
}
function expande(indicador)
{
document.location.href="acervo.php?flag_indicador="+indicador;
}
function MM_goToURL() { //v3.0
var i, args=MM_goToURL.arguments; document.MM_returnValue = false;
for (i=0; i<(args.length-1); i+=2) eval(args[i]+".location='"+args[i+1]+"'");
}
function oculta(nome)
{
if( document.getElementById(nome).style.display=='')
document.getElementById(nome).style.display="none";
else
document.getElementById(nome).style.display="";
}
/*
function janela_obras()
{
//alert(document.pesquisas.tipo_obra_selecionados.value);
document.getElementById("carregar").style.display="block";
x_ajax_mostra_filtro("T",document.pesquisas.tipo_obra_selecionados.value,'S',mostra_conteudo_filtro);
}
*/
function get_result(n_pag)
{
if(n_pag==0)
document.pesquisas.codigo_acervo_tela.value="";
acao = document.pesquisas.controla_acao.value;
document.pesquisas.controla_get_result.value=n_pag;
// alert(document.pesquisas.controla_get_result.value);
tpp1 = document.pesquisas.termo_para_pesquisa1.value;
tpp1 = tpp1.trim();
/*
if(tpp1=="")
{
alert("Digite o termo para a pesquisa!");
document.pesquisas.termo_para_pesquisa1.focus();
return;
}
*/
// Customização CJF
if((document.pesquisas.termo_para_pesquisa1.value.trim()=="Digite o termo para a pesquisa" || document.pesquisas.termo_para_pesquisa1.value.trim()=="") )
{
alert("Digite o termo para a pesquisa!");
document.pesquisas.termo_para_pesquisa1.focus();
return false;
}
re1 = document.pesquisas.relacional1.value;
re2 = document.pesquisas.relacional2.value;
tpp2 = document.pesquisas.termo_para_pesquisa2.value;
tpp3 = document.pesquisas.termo_para_pesquisa3.value;
tpp2 = tpp2.trim();
tpp3 = tpp3.trim();
filtro2 = document.pesquisas.filtro2.value.trim();
filtro3 = document.pesquisas.filtro3.value.trim();
/* if(re1!="")
{
if(tpp2=="")
{
alert("Digite o termo 2 para a pesquisa!");
document.pesquisas.termo_para_pesquisa2.focus();
return;
}
}*/
if(tpp2!="" && re1=="")
{
document.pesquisas.relacional1.selectedIndex = 1;
re1 = document.pesquisas.relacional1.value;
}
/* if(re2!="")
{
if(tpp3=="")
{
alert("Digite o termo 3 para a pesquisa!");
document.pesquisas.termo_para_pesquisa3.focus();
return;
}
}*/
if(tpp3!="" && re2=="")
{
document.pesquisas.relacional2.selectedIndex = 1;
re2 = document.pesquisas.relacional2.value;
}
indice_reg_pag=document.pesquisas.n_registros_por_pagina.selectedIndex;
n_registros_pag=document.pesquisas.n_registros_por_pagina.options[indice_reg_pag].value;
// n_registros_pag = document.pesquisas.n_registros_por_pagina.value;
// bib_temp = document.pesquisas.bib_selecionadas.value;
// colecao_temp = document.pesquisas.colecao_selecionados.value;
tobra_temp = document.pesquisas.tipo_obra_selecionados.value;
// colecao_temp = document.getElementById("listacol").value;
//alert(colecao_temp);
if(document.getElementById("listabib") != null)
bib_temp = document.getElementById("listabib").value;
else
bib_temp = document.getElementById("bib_selecionadas").value;
//alert(bib_temp);
f1 = document.getElementById("filtro1").value;
f2 = document.getElementById("filtro2").value;
f3 = document.getElementById("filtro3").value;
ap = document.pesquisas.ano_publicacao.value;
ap = ap.trim();
if(ap!="")
{
if(document.pesquisas.comparacao.value==-1)
document.pesquisas.comparacao.selectedIndex = 1;
}
ap2 = document.pesquisas.ano_publicacao2.value;
ap2 = ap2.trim();
comp = document.pesquisas.comparacao.value;
// lp = document.pesquisas.lugar_publicacao.value;
// idi = document.pesquisas.idioma.value;
// lnb = document.pesquisas.local_na_bib.value;
//categ = document.pesquisas.cod_categoria.value;
// if(document.pesquisas.bib_virtual.checked==true)
// bv = "S";
// else
// bv = "N";
indiceOrdenar=document.pesquisas.modo_ordenar.selectedIndex;
valor_ordenar=document.pesquisas.modo_ordenar.options[indiceOrdenar].value;
document.pesquisas.pesq.disabled=true;
document.pesquisas.pesq.value="Aguarde..";
cod_autoridade_p = document.pesquisas.codigo_autoridade.value;
// alert(document.pesquisas.tipo_termos.length);
tipo_termos_valor="";
// for(mcl=0;mcl<document.pesquisas.tipo_termos.length;mcl++)
// {
// if(document.pesquisas.tipo_termos[mcl].checked)
// tipo_termos_valor=document.pesquisas.tipo_termos[mcl].value;
// }
id_tela_unica = document.pesquisas.id_php_tela_refresh.value;
campus_selecionados_valor = document.pesquisas.campus_selecionados.value;
// alert(n_registros_pag+","+n_pag+","+tobra_temp+","+bib_temp+","+colecao_temp+","+f1+","+tpp1+","+re1+","+f2+","+tpp2+","+re2+","+f3+","+tpp3+","+ap+","+comp+","+lp+","+idi+","+lnb+","+categ);
document.getElementById("carregar").style.display="block";
// alert("Autoridade: "+cod_autoridade_p);
// alert(bib_temp);
while(true)
{
i=tpp1.indexOf("+");
if(i==-1)
break;
tpp1=tpp1.replace("+","MCL");
}
while(true)
{
i=tpp2.indexOf("+");
if(i==-1)
break;
tpp2=tpp2.replace("+","MCL");
}
while(true)
{
i=tpp3.indexOf("+");
if(i==-1)
break;
tpp3=tpp3.replace("+","MCL");
}
fe_tipo_valor = document.pesquisas.filtro_esquerdo_tipo.value;
fe_parametro_valor = document.pesquisas.filtro_esquerdo_parametro.value;
// alert(fe_tipo_valor);
// alert(fe_parametro_valor);
// alert(n_registros_pag+' - '+n_pag+' - '+tobra_temp+' - '+bib_temp+' - '+tobra_temp+' - '+bib_temp+' - '+t_p_i_temp+' - '+ano_pub_temp+' - '+colecao_temp+' - '+cod_autoridade_p+' - '+valor_ordenar+' - '+id_tela_unica+' - '+campus_selecionados_valor);
x_ajax_resultados(n_registros_pag,n_pag,tobra_temp,bib_temp,'',f1,tpp1,re1,f2,tpp2,re2,f3,tpp3,ap,ap2,comp,'','','','','',cod_autoridade_p,'',tipo_termos_valor,valor_ordenar,id_tela_unica,campus_selecionados_valor,acao,fe_tipo_valor,fe_parametro_valor,mostra_result);
}
function imprime_classificacao(valor_classi,cod_acervo_temp_js)
{
if(cod_acervo_temp_js=="")
cod_acervo_temp_js = document.pesquisas.codigo_acervo_tela.value;
document.pesquisas.codigo_acervo_tela.value = cod_acervo_temp_js;
window.open('imp_classificacao.php?valor_classificacao='+valor_classi+'&codAcervo='+cod_acervo_temp_js,'ControlWindowFiscClassi','width=350,height=295,top=0px,left=0px,status=yes,scrollbars=yes,resizable=yes');
}
function mostra_result(novo_dado)
{
//alert(novo_dado);
document.pesquisas.controla_acao.value = "";
document.getElementById("div_resultados").innerHTML = novo_dado;
document.getElementById("div_resultados").style.display="";
document.pesquisas.pesq.disabled=false;
document.pesquisas.pesq.value="Pesquisar";
document.getElementById("carregar").style.display="none";
if(document.getElementById("div_conteudo_pastas") != null)
document.getElementById("div_conteudo_pastas").style.display="none";
if(document.getElementById("div_detalhes_acervo") != null)
document.getElementById("div_detalhes_acervo").style.display="none";
if(document.getElementById("div_informativo") != null)
document.getElementById("div_informativo").style.display="none";
// alert(document.pesquisas.controla_get_result.value);
if(document.pesquisas.controla_get_result.value != 0)
document.location.href="#sobe_paginacao";
// document.pesquisas.bib_selecionadas_final.value=document.pesquisas.bib_selecionadas.value;
// document.pesquisas.bib_selecionadas.value=document.pesquisas.bib_inicial_ips.value;
// document.pesquisas.tipo_obra_selecionados.value="";
// document.pesquisas.colecao_selecionados.value="";
document.location.href="#ponto_referencia";
TabbedPanels1;
TabbedPanels1 = new Spry.Widget.TabbedPanels("TabbedPanels1");
consulta_filtros();
}
function janela_bibliotecas()
{
//alert(document.pesquisas.bib_selecionadas.value);
document.getElementById("carregar").style.display="block";
document.getElementById('solucao2').style.display='';
x_ajax_mostra_filtro_campus("B",document.pesquisas.bib_selecionadas.value,'',document.pesquisas.campus_selecionados.value,mostra_conteudo_filtro_novo_new);
}
function mostra_conteudo_filtro_novo_new(novo_dado)
{
novo_dado=novo_dado.replace("'unid_informacao'","'unid_informacao4'");
novo_dado=novo_dado.replace("'unid_informacao'","'unid_informacao4'");
if(document.getElementById("solucao1")!=null)
document.getElementById("solucao1").style.display="none";
document.getElementById("div_filtros_janela").innerHTML = novo_dado;
document.getElementById("div_filtros_janela").style.display="";
document.getElementById("carregar").style.display="none";
}
function janela_obras(flag)
{
//alert(document.pesquisas.tipo_obra_selecionados.value);
document.getElementById("carregar").style.display="block";
x_ajax_mostra_filtro("T",document.pesquisas.tipo_obra_selecionados.value,flag,mostra_conteudo_filtro_obranovo_new);
}
function mostra_conteudo_filtro_obranovo_new(novo_dado)
{
novo_dado=novo_dado.replace("'tipos_obrasnovo4'","'tipos_obrasnovo5'");
novo_dado=novo_dado.replace("'tipos_obrasnovo4'","'tipos_obrasnovo5'");
document.getElementById("solucao2").style.display="none";
document.getElementById("div_filtros_janela").innerHTML = novo_dado;
document.getElementById("div_filtros_janela").style.display="";
document.getElementById("carregar").style.display="none";
}
function janela_colecao()
{
//alert(document.pesquisas.colecao_selecionados.value);
document.getElementById("carregar").style.display="block";
x_ajax_mostra_filtro("C",document.pesquisas.colecao_selecionados.value,'',mostra_conteudo_filtro);
}
function setaSelecionados(descricao,frase,cont_temp)
{
//alert("setaSelecionados 1");
eval("document.pesquisas."+descricao+".value='"+frase+"';");
if(descricao=="bib_selecionadas")
{
descricao_temp="contador_bib_selecionadas";
if(cont_temp==0)
cont_temp="Todas";
}
if(descricao=="tipo_obra_selecionados")
{
descricao_temp="contador_obra_selecionadas";
if(cont_temp==0)
cont_temp="Todos";
}
if(descricao=="colecao_selecionados")
{
descricao_temp="contador_colecao_selecionadas";
if(cont_temp==0)
cont_temp="Todas";
}
if(cont_temp!="")
{
// alert(cont_temp);
c = cont_temp;
if (c>0)
{
if (c==1) s = ""; else s = "s";
cont_temp = c+' selecionado'+s;
}
if(descricao=="bib_selecionadas")
document.getElementById('id_filtro_bib_text').innerHTML = cont_temp;
if(descricao=="tipo_obra_selecionados")
document.getElementById('id_filtro_obra_text').innerHTML = cont_temp;
// document.getElementById(descricao_temp).innerHTML = "<font class='txt'>("+cont_temp+")</font>";
// document.getElementById(descricao_temp).style.display = '';
}
//alert("setaSelecionados 2");
}
/*
function exatamente_igual()
{
tipo_termos_marcado="";
for(mcl=0;mcl<document.pesquisas.tipo_termos.length;mcl++)
{
if(document.pesquisas.tipo_termos[mcl].checked)
tipo_termos_marcado=document.pesquisas.tipo_termos[mcl].value;
}
if(tipo_termos_marcado=="E")
{
conteudo_f1 = "<select name='filtro1' id='filtro1' class='pmu_campo4' onChange='verifica_operador1(\"nao\");'><option value='TITULO'>Título</option><option value='AUTOR'>Autor</option><option value='ASSUNTO'>Assunto</option></select>";
document.getElementById("mostra_filtro1").innerHTML = conteudo_f1;
conteudo_f2 = "<select name='filtro2' id='filtro2' class='pmu_campo4' onChange='verifica_operador1(\"mostra\")'><option value='TITULO'>Título</option><option value='AUTOR'>Autor</option><option value='ASSUNTO'>Assunto</option></select>";
document.getElementById("mostra_filtro2").innerHTML = conteudo_f2;
conteudo_f3 = "<select name='filtro3' id='filtro3' class='pmu_campo4'><option value='TITULO'>Título</option><option value='AUTOR'>Autor</option><option value='ASSUNTO'>Assunto</option></select>";
document.getElementById("mostra_filtro3").innerHTML = conteudo_f3;
conteudo_r1 = "<select name='relacional1' id='relacional1' class='pmu_campo4' onChange='valida_operadores();'><option value=''></option><option value='AND'>E</option></select>";
document.getElementById("mostra_relacional1").innerHTML = conteudo_r1;
conteudo_r2 = "<select name='relacional2' id='relacional2' class='pmu_campo4'><option value=''></option><option value='AND'>E</option></select>";
document.getElementById("mostra_relacional2").innerHTML = conteudo_r2;
}
else
{
conteudo_f1 = "<select name='filtro1' id='filtro1' class='pmu_campo4' onChange='verifica_operador1(\"nao\");'><option value='TITULO'>Título</option><option value='AUTOR'>Autor</option><option value='ASSUNTO'>Assunto</option><option value='LIVRE'>Livre</option></select>";
document.getElementById("mostra_filtro1").innerHTML = conteudo_f1;
conteudo_f2 = "<select name='filtro2' id='filtro2' class='pmu_campo4' onChange='verifica_operador1(\"mostra\")'><option value='TITULO'>Título</option><option value='AUTOR'>Autor</option><option value='ASSUNTO'>Assunto</option><option value='LIVRE'>Livre</option></select>";
document.getElementById("mostra_filtro2").innerHTML = conteudo_f2;
conteudo_f3 = "<select name='filtro3' id='filtro3' class='pmu_campo4'><option value='TITULO'>Título</option><option value='AUTOR'>Autor</option><option value='ASSUNTO'>Assunto</option><option value='LIVRE'>Livre</option></select>";
document.getElementById("mostra_filtro3").innerHTML = conteudo_f3;
conteudo_r1 = "<select name='relacional1' id='relacional1' class='pmu_campo4' onChange='valida_operadores();'><option value=''></option><option value='AND'>E</option><option value='OR'>Ou</option><option value='NOT'>Não</option><option value='AFT'>Depois</option><option value='BEF'>Anterior</option><option value='PRO'>Próximo</option></select>";
document.getElementById("mostra_relacional1").innerHTML = conteudo_r1;
conteudo_r2 = "<select name='relacional2' id='relacional2' class='pmu_campo4'><option value=''></option><option value='AND'>E</option><option value='OR'>Ou</option><option value='NOT'>Não</option></select>";
document.getElementById("mostra_relacional2").innerHTML = conteudo_r2;
}
valida_operadores();
}
*/
function valida_operadores()
{
indiceOperador1=document.pesquisas.relacional1.selectedIndex;
valor_Operador1=document.pesquisas.relacional1.options[indiceOperador1].value;
// console.log(valor_Operador1);
if(valor_Operador1=="AFT" || valor_Operador1=="BEF" || valor_Operador1=="PRO")
{
indiceTipo1=document.getElementById("filtro1").selectedIndex;
document.getElementById("filtro2").selectedIndex = indiceTipo1;
document.pesquisas.relacional2.selectedIndex=0;
document.pesquisas.relacional2.disabled=true;
document.getElementById("filtro3").selectedIndex=0;
document.getElementById("filtro3").disabled=true;
document.pesquisas.termo_para_pesquisa3.value="";
document.pesquisas.termo_para_pesquisa3.disabled=true;
conteudo_f2 = "<select name='filtro2' id='filtro2' class='pmu_campo4' onChange='verifica_operador1(\"mostra\")'><option value='TITULO'>Título</option><option value='AUTOR'>Autor</option><option value='ASSUNTO'>Assunto</option></select>";
document.getElementById("mostra_filtro2").innerHTML = conteudo_f2;
document.getElementById("carregar").style.display="none";
}
else
{
document.pesquisas.relacional2.disabled=false;
document.getElementById("filtro3").disabled=false;
document.pesquisas.termo_para_pesquisa3.disabled=false;
tipo_termos_marcado="";
/* for(mcl=0;mcl<document.pesquisas.tipo_termos.length;mcl++)
{
if(document.pesquisas.tipo_termos[mcl].checked)
tipo_termos_marcado=document.pesquisas.tipo_termos[mcl].value;
}
*/
/* if(tipo_termos_marcado!="E")
{
conteudo_f2 = "<select name='filtro2' id='filtro2' class='pmu_campo4' onChange='verifica_operador1(\"mostra\")'><option value='TITULO'>Título</option><option value='AUTOR'>Autor</option><option value='ASSUNTO'>Assunto</option><option value='LIVRE'>Livre</option></select>";
document.getElementById("mostra_filtro2").innerHTML = conteudo_f2;
document.getElementById("carregar").style.display="none";
}
*/
}
}
function mostraData(){
if(document.pesquisas.comparacao.selectedIndex == 4){
document.pesquisas.ano_publicacao2.style.display="";
document.pesquisas.ano_publicacao2.value='';
}else{
document.pesquisas.ano_publicacao2.value='';
document.pesquisas.ano_publicacao2.style.display="none";
}
}
function verifica_operador1(flag)
{
if(document.pesquisas.termo_para_pesquisa3.disabled==true)
{
document.getElementById("filtro2").selectedIndex=document.getElementById("filtro1").selectedIndex;
if(flag=="mostra")
alert("Para este operador lógico os tipos de Pesquisa devem ser iguais!");
}
}
function busca_detalhes_indice(pesquisa_por_codigo_valor,cod_autoridade_temp,desc_autoridade,cod_opcaoJS)
{
document.pesquisas.pesq.disabled=true;
document.pesquisas.pesq.value="Aguarde..";
id_tela_unica = document.pesquisas.id_php_tela_refresh.value;
document.getElementById("carregar").style.display="block";
indice_reg_pag=document.pesquisas.n_registros_por_pagina.selectedIndex;
n_registros_pag=document.pesquisas.n_registros_por_pagina.options[indice_reg_pag].value;
if(document.getElementById("listabib") != null)
bib_temp = document.getElementById("listabib").value;
else
bib_temp = document.getElementById("bib_selecionadas").value;
campus_selecionados_valor = document.pesquisas.campus_selecionados.value;
indiceOrdenar=document.pesquisas.modo_ordenar.selectedIndex;
valor_ordenar=document.pesquisas.modo_ordenar.options[indiceOrdenar].value;
x_ajax_resultados(n_registros_pag,0,'',bib_temp,'','',cod_opcaoJS,'','','','','','','','','','','','','','',cod_autoridade_temp,'','',valor_ordenar,id_tela_unica,campus_selecionados_valor,'','','',mostra_result);
}
function nova_pesquisa(termo_desc,cod_autoridade_pesq,flag_tipo)
{
MM_showHideLayers('dados','','hide');
document.getElementById('div_facebook').style.display='none';
MM_showHideLayers('dados_acervo_tela2','','hide');
if(cod_autoridade_pesq != "")
document.pesquisas.codigo_autoridade.value=cod_autoridade_pesq;
else
{
// if(cod_autoridade_pesq=="")
// {
document.pesquisas.termo_para_pesquisa1.value=termo_desc;
// 1 - titulo / 2 - assunto / 3 - autor
// if(flag_tipo_definitivo=="")
document.getElementById("filtro1").selectedIndex = 4;
// flag_tipo_definitivo="LIVRE";
if(flag_tipo > "599" && flag_tipo < "700")
document.getElementById("filtro1").selectedIndex = 3;
// flag_tipo_definitivo="ASSUNTO";
if(flag_tipo == "100" || flag_tipo == "700")
document.getElementById("filtro1").selectedIndex = 2;
// flag_tipo_definitivo="AUTOR";
if(flag_tipo == "245")
document.getElementById("filtro1").selectedIndex = 1;
// flag_tipo_definitivo="TITULO";
// document.getElementById("filtro1").value=flag_tipo_definitivo;
document.getElementById("filtro2").value="";
document.getElementById("filtro3").value="";
document.pesquisas.termo_para_pesquisa2.value="";
document.pesquisas.termo_para_pesquisa3.value="";
// }
// else
// document.pesquisas.codigo_autoridade.value=cod_autoridade_pesq;
}
document.pesquisas.controla_voltar.value=2;
get_result('0');
}
function pararPesquisa()
{
sajax_cancel();
document.pesquisas.pesq.disabled=false;
document.pesquisas.pesq.value="Pesquisar";
document.getElementById("carregar").style.display="none";
}
function mostra_acervo_consultas(cod_acervo)
{
document.getElementById("div_grafic").innerHTML = "<br><br><br><br><br><br><br><br><br><br><br><br><font class='link_aguarde'>Aguarde...</font>";
document.getElementById("div_grafic").style.display="";
ano_indicado = '';
x_ajax_acervo_detalhes(cod_acervo,ano_indicado,mostra_tela_acervo_detalhes);
}
function listar_links(cod_acervo_link)
{
document.getElementById("div_online_novo").innerHTML = "<br><br><br><br><br><br><br><br><br><br><br><br><font class='link_aguarde'>Aguarde...</font>";
document.getElementById("div_online_novo").style.display="";
MM_showHideLayers('online','','show');
x_ajax_monta_links(cod_acervo_link,mostra_tela_links);
}
function mostra_cesta(novo_dado)
{
document.pesquisas.acervos_selecionados.value=novo_dado;
document.getElementById("carregar").style.display="none";
alert("Obra(s) inserido(s) na cesta com sucesso limitado à 100 obras!");
}
function chama_req_material(cod_acervo,indicador,ui_origem_ou_recebimento){
if(cod_acervo==""){
document.getElementById("div_req_material").innerHTML = "<br><br><br><br><br><br><br><br><br><br><br><br><font class='link_aguarde'>Aguarde...</font>";
document.getElementById("div_req_material").style.display="";
}
if(document.getElementById("biblioteca2_novo") != null)
cod_bib_reserva = document.getElementById("biblioteca2_novo").value;
else
cod_bib_reserva = "";
if(document.getElementById("volume2_novo") != null)
volume_reserva = document.getElementById("volume2_novo").value;
else
volume_reserva = "";
if(document.getElementById("tomos2_novo") != null)
tomos_reserva = document.getElementById("tomos2_novo").value;
else
tomos_reserva = "";
if(document.getElementById("parte2_novo") != null)
parte_reserva = document.getElementById("parte2_novo").value;
else
parte_reserva = "";
if(document.getElementById("login_acesso_novo3") != null)
login_acesso3_reserva = document.getElementById("login_acesso_novo3").value;
else
login_acesso3_reserva = "";
categoria_usuario = "";
if(document.getElementById("senha_acesso_novo3") != null)
senha_acesso3_reserva = document.getElementById("senha_acesso_novo3").value;
else
senha_acesso3_reserva = "";
if(document.getElementById("mat_adicional2_novo") != null)
mat_adicional_reserva = document.getElementById("mat_adicional2_novo").value;
else
mat_adicional_reserva = "";
if(document.getElementById("localizacao_recebimento_novo") != null)
cod_local_rec_reserva = document.getElementById("localizacao_recebimento_novo").value;
else
cod_local_rec_reserva = "";
if(document.getElementById("pessoa_autorizada_novo") != null)
pessoa_autorizada_reserva = document.getElementById("pessoa_autorizada_novo").value;
else
pessoa_autorizada_reserva = "";
if(document.getElementById("telefone_novo") != null)
telefone_novo_reserva = document.getElementById("telefone_novo").value;
else
telefone_novo_reserva = "";
if(document.getElementById("email_novo") != null)
email_novo_reserva = document.getElementById("email_novo").value;
else
email_novo_reserva = "";
if(indicador == "n")
var acao_emprestimo = 1;
else
var acao_emprestimo = 0;
if(indicador == "v"){
if(login_acesso3_reserva==""){
alert("Por favor preencher o campo "+document.getElementById("id_denominacao_login_se").innerHTML+"!");
document.getElementById("login_acesso_novo3").focus();
return;
}
if(senha_acesso3_reserva==""){
alert("Digite sua senha!");
document.getElementById("senha_acesso_novo3").focus();
return;
}
}
estado_validacao = true;
if(login_acesso3_reserva != "" && senha_acesso3_reserva != "")
estado_validacao = valida_login_armazem_reserva("3");
if((estado_validacao) || (indicador == "n") || ((estado_validacao) && (indicador == "n"))){
if(document.getElementById("biblioteca_recebimento_novo") != null){
cod_bib_rec_reserva = document.getElementById("biblioteca_recebimento_novo").value;
}
else
cod_bib_rec_reserva = "";
if(document.getElementById("envia_reserva") != null){
document.getElementById("envia_reserva").setAttribute("value","Aguarde..");
document.getElementById("envia_reserva").setAttribute("disabled","true");
}
if(ui_origem_ou_recebimento=="volume"){
document.getElementById("td_tomo").innerHTML = "<img height='21px' src='../img/loading.gif'>";
document.getElementById("td_parte").innerHTML = "<img height='21px' src='../img/loading.gif'>";
document.getElementById("td_material").innerHTML = "<img height='21px' src='../img/loading.gif'>";
document.getElementById("td_biblioteca_origem").innerHTML = "<img height='21px' src='../img/loading.gif'>";
document.getElementById("td_biblioteca_recebimento").innerHTML = "<img height='21px' src='../img/loading.gif'>";
}else{
if(ui_origem_ou_recebimento=="tomo"){
document.getElementById("td_parte").innerHTML = "<img height='21px' src='../img/loading.gif'>";
document.getElementById("td_material").innerHTML = "<img height='21px' src='../img/loading.gif'>";
document.getElementById("td_biblioteca_origem").innerHTML = "<img height='21px' src='../img/loading.gif'>";
document.getElementById("td_biblioteca_recebimento").innerHTML = "<img height='21px' src='../img/loading.gif'>";
}else{
if(ui_origem_ou_recebimento=="parte"){
document.getElementById("td_material").innerHTML = "<img height='21px' src='../img/loading.gif'>";
document.getElementById("td_biblioteca_origem").innerHTML = "<img height='21px' src='../img/loading.gif'>";
document.getElementById("td_biblioteca_recebimento").innerHTML = "<img height='21px' src='../img/loading.gif'>";
}else{
if(ui_origem_ou_recebimento=="material"){
document.getElementById("td_biblioteca_origem").innerHTML = "<img height='21px' src='../img/loading.gif'>";
document.getElementById("td_biblioteca_recebimento").innerHTML = "<img height='21px' src='../img/loading.gif'>";
}else{
if(ui_origem_ou_recebimento=="origem"){
document.getElementById("td_biblioteca_recebimento").innerHTML = "<img height='21px' src='../img/loading.gif'>";
}
}
}
}
}
x_ajax_mostra_req_material(cod_acervo,cod_bib_reserva,volume_reserva,tomos_reserva,parte_reserva,login_acesso3_reserva,senha_acesso3_reserva.replace("+","%2B"),mat_adicional_reserva,cod_bib_rec_reserva,cod_local_rec_reserva,pessoa_autorizada_reserva,indicador,'','',telefone_novo_reserva,email_novo_reserva,categoria_usuario,acao_emprestimo,mostra_tela_req_material);
}
}
function autoridadeRemissiva(cod_autoridade)
{
MM_showHideLayers('dados_acervo_tela2','','hide');
MM_showHideLayers('dados','','show');
document.getElementById("div_detalhes_acervo").innerHTML = "<br><br><br><br><br><br><br><br><br><br><br><br><font class='link_aguarde'>Aguarde...</font>";
document.getElementById("div_detalhes_acervo").style.display="";
cod_acervo_temp_js = document.pesquisas.codigo_acervo_tela.value;
x_ajax_autoridade_remissiva(cod_autoridade,"A",cod_acervo_temp_js,mostra_autoridade_remissiva);
}
function autoridadeRemissivaMarc(cod_autoridade)
{
MM_showHideLayers('dados_acervo_tela2','','hide');
MM_showHideLayers('dados','','show');
document.getElementById("div_detalhes_acervo").innerHTML = "<br><br><br><br><br><br><br><br><br><br><br><br><font class='link_aguarde'>Aguarde...</font>";
document.getElementById("div_detalhes_acervo").style.display="";
cod_acervo_temp_js = document.pesquisas.codigo_acervo_tela.value;
x_ajax_autoridade_remissiva(cod_autoridade,"B",cod_acervo_temp_js,mostra_autoridade_remissiva);
}
function carrega_dados_acervo(cod_acervo_temp_js)
{
document.getElementById("div_detalhes_acervo").innerHTML = "<br><br><br><br><br><br><br><br><br><br><br><br><font class='link_aguarde'>Aguarde...</font>";
document.getElementById("div_detalhes_acervo").style.display="";
cod_acervo_temp_js = cod_acervo_temp_js.trim();
achou=cod_acervo_temp_js.indexOf(")");
if(achou >= 0)
{
cod_acervo_temp_js = cod_acervo_temp_js.substring(achou+1,cod_acervo_temp_js.length);
cod_acervo_temp_js = cod_acervo_temp_js.trim();
}
if(cod_acervo_temp_js=="")
cod_acervo_temp_js = document.pesquisas.codigo_acervo_tela.value;
document.pesquisas.codigo_acervo_tela.value=cod_acervo_temp_js;
x_ajax_dados_acervo(cod_acervo_temp_js,'',mostra_dados_acervo);
}
function continue_lendo_955_a(texto_grande){
var texto_grande = document.getElementById("texto_completo_955_a").value;
document.getElementById("texto_955_a").innerHTML = texto_grande;
}
function mostra_tela_reserva(novo_dado){
document.getElementById("dlg").style.display="";
YAHOO.example.container.dlg.show();
document.getElementById("titulo_janela").innerHTML = "Reserva";
document.getElementById("mostra_dados_tabela").innerHTML = novo_dado;
document.getElementById("carregar").style.display="none";
}
function chamaReserva(cod_acervo,indicador)
{
if(document.getElementById("biblioteca2") != null)
cod_bib_reserva = document.getElementById("biblioteca2").value;
else
cod_bib_reserva = "";
if(document.getElementById("volume2") != null)
volume_reserva = document.getElementById("volume2").value;
else
volume_reserva = "";
if(document.getElementById("tomos2") != null)
tomos_reserva = document.getElementById("tomos2").value;
else
tomos_reserva = "";
if(document.getElementById("parte2") != null)
parte_reserva = document.getElementById("parte2").value;
else
parte_reserva = "";
if(document.getElementById("login_acesso3") != null)
login_acesso3_reserva = document.getElementById("login_acesso3").value;
else
login_acesso3_reserva = "";
if(document.getElementById("senha_acesso3") != null)
senha_acesso3_reserva = document.getElementById("senha_acesso3").value;
else
senha_acesso3_reserva = "";
if(document.getElementById("mat_adicional2") != null)
mat_adicional_reserva = document.getElementById("mat_adicional2").value;
else
mat_adicional_reserva = "";
if(document.getElementById("local_reserva") != null)
local_reserva = document.getElementById("local_reserva").value;
else
local_reserva = "";
if(indicador == "v")
{
if(login_acesso3_reserva=="")
{
alert("O campo matrícula deve ser preenchido");
document.getElementById("login_acesso3").focus();
return;
}
if(senha_acesso3_reserva=="")
{
alert("Digite sua senha!");
document.getElementById("senha_acesso3").focus();
return;
}
}
estado_validacao = true;
if(login_acesso3_reserva != "")
estado_validacao = valida_login_armazem_reserva("3");
if(senha_acesso3_reserva != "")
estado_validacao = valida_login_armazem_reserva("3");
if(estado_validacao)
{
if(document.getElementById("envia_reserva") != null)
{
document.getElementById("envia_reserva").setAttribute("value","Aguarde..");
document.getElementById("envia_reserva").setAttribute("disabled","true");
}
document.getElementById("carregar").style.display="block";
x_ajax_mostra_reserva(cod_acervo,cod_bib_reserva,volume_reserva,tomos_reserva,parte_reserva,login_acesso3_reserva,senha_acesso3_reserva.replace("+","%2B"),mat_adicional_reserva,indicador,local_reserva,mostra_tela_reserva);
}
}
function chamaReservaNovo(cod_acervo,indicador, cod_empresa){
var tipoObrigatorio;
if(document.getElementById("biblioteca2") != null)
cod_bib_reserva = document.getElementById("biblioteca2").value;
else
cod_bib_reserva = "";
if(document.getElementById("volume2") != null)
volume_reserva = document.getElementById("volume2").value;
else
volume_reserva = "";
if(document.getElementById("tomos2") != null)
tomos_reserva = document.getElementById("tomos2").value;
else
tomos_reserva = "";
if(document.getElementById("parte2") != null)
parte_reserva = document.getElementById("parte2").value;
else
parte_reserva = "";
if(document.getElementById("login_acesso3") != null)
login_acesso3_reserva = document.getElementById("login_acesso3").value;
else
login_acesso3_reserva = "";
if(document.getElementById("senha_acesso3") != null)
senha_acesso3_reserva = document.getElementById("senha_acesso3").value;
else
senha_acesso3_reserva = "";
if(document.getElementById("mat_adicional2") != null)
mat_adicional_reserva = document.getElementById("mat_adicional2").value;
else
mat_adicional_reserva = "";
if(document.getElementById("local_reserva") != null)
local_reserva = document.getElementById("local_reserva").value;
else
local_reserva = "";
if(indicador == "n")
var acao_reserva = 1;
else
var acao_reserva = 0;
if(indicador == "v"){
if("N"=="S")
{
tipoObrigatorio = document.getElementById("id_empresa").value;
if(tipoObrigatorio == -1){
alert("Selecione a opção obrigatória!");
document.getElementById("id_empresa").focus();
return;
}
}
if(login_acesso3_reserva==""){
alert("O campo matrícula deve ser preenchido");
document.getElementById("login_acesso3").focus();
return;
}
if(senha_acesso3_reserva==""){
alert("Digite sua senha!");
document.getElementById("senha_acesso3").focus();
return;
}
}
estado_validacao = true;
if(login_acesso3_reserva != "")
estado_validacao = valida_login_armazem_reserva("3");
if((estado_validacao) || (indicador == "n") || ((estado_validacao) && (indicador == "n"))){
if(document.getElementById("envia_reserva") != null){
document.getElementById("envia_reserva").setAttribute("value","Aguarde..");
document.getElementById("envia_reserva").setAttribute("disabled","true");
}
if("N"=="S")
tipoObrigatorio = document.getElementById("id_empresa").value;
x_ajax_dados_reserva(cod_acervo,cod_bib_reserva,volume_reserva,tomos_reserva,parte_reserva,login_acesso3_reserva,senha_acesso3_reserva.replace("+","%2B"),mat_adicional_reserva,indicador,local_reserva, tipoObrigatorio,acao_reserva, mostra_tela_reserva);
}
}
function chamaClassificacao(cod_acervo_temp_js,acao)
{
document.getElementById("div_imprimir_classificacao").innerHTML = "<br><br><br><br><br><br><br><br><br><br><br><br><font class='link_aguarde'>Aguarde...</font>";
document.getElementById("div_imprimir_classificacao").style.display="";
if(cod_acervo_temp_js=="")
cod_acervo_temp_js = document.pesquisas.codigo_acervo_tela.value;
document.pesquisas.codigo_acervo_tela.value = cod_acervo_temp_js;
x_ajax_mostra_classificacao(cod_acervo_temp_js,acao,mostra_tela_classificacao);
}
function mostra_tela_classificacao(novo_dado)
{
achou = novo_dado.indexOf("QUEBRA");
novo_dado1 = novo_dado.substring(0,achou);
novo_dado2 = novo_dado.substring(achou+6,novo_dado.length);
document.getElementById("div_imprimir_classificacao").innerHTML = novo_dado1;
if(novo_dado2=="")
return;
iRetorno = BemaPrinter1.IniciaPorta("LPT1");
if(iRetorno <= 0)
{
novo_dado1 = novo_dado1.replace("Impressão enviada.","Problemas ao abrir a porta de Comunicação LPT1. "+ iRetorno);
document.getElementById("div_imprimir_classificacao").innerHTML = novo_dado1;
return;
}
else
{
controla_erro = false;
PrinterNumber = parseInt("1");
iRetorno = BemaPrinter1.ConfiguraModeloImpressora(PrinterNumber)
if(iRetorno == -2)
controla_erro = true;
if(controla_erro)
{
controla_erro = false;
PrinterNumber = parseInt("0");
iRetorno = BemaPrinter1.ConfiguraModeloImpressora(PrinterNumber)
if(iRetorno == -2)
controla_erro = true;
}
if(controla_erro)
{
novo_dado1 = novo_dado1.replace("Impressão enviada.","Parâmetro inválido na função ConfiguraModeloImpressora.");
document.getElementById("div_imprimir_classificacao").innerHTML = novo_dado1;
return;
}
}
iRetorno = BemaPrinter1.IniciaPorta("LPT1");
if (iRetorno <= 0)
{
novo_dado1 = novo_dado1.replace("Impressão enviada.","Problemas ao abrir a porta de Comunicação LPT1. " + iRetorno);
document.getElementById("div_imprimir_classificacao").innerHTML = novo_dado1;
return;
}
iRetorno = BemaPrinter1.Le_Status();
switch (iRetorno)
{
case 0 : novo_dado1 = novo_dado1.replace("Impressão enviada.","Impressora desligada ou cabo desconectado.");
document.getElementById("div_imprimir_classificacao").innerHTML = novo_dado1;
break;
case 32 :
novo_dado1 = novo_dado1.replace("Impressão enviada.","Impressora Off-line ou Fim de papel.");
document.getElementById("div_imprimir_classificacao").innerHTML = novo_dado1;
break;
case 4 :
novo_dado1 = novo_dado1.replace("Impressão enviada.","Impressora pouco papel e off-line.");
document.getElementById("div_imprimir_classificacao").innerHTML = novo_dado1;
break;
case 40 :
novo_dado1 = novo_dado1.replace("Impressão enviada.","Impressora fim de papel.");
document.getElementById("div_imprimir_classificacao").innerHTML = novo_dado1;
break;
case 5:
case 48 :
novo_dado1 = novo_dado1.replace("Impressão enviada.","Impressora pouco papel e on-line.");
document.getElementById("div_imprimir_classificacao").innerHTML = novo_dado1;
break;
case 79 :
novo_dado1 = novo_dado1.replace("Impressão enviada.","Impressora off-line.");
document.getElementById("div_imprimir_classificacao").innerHTML = novo_dado1;
break;
case 9:
case 128 :
novo_dado1 = novo_dado1.replace("Impressão enviada.","Impressora Head Up.");
document.getElementById("div_imprimir_classificacao").innerHTML = novo_dado1;
break;
}
BemaPrinter1.FormataTX(novo_dado2, 2, 0, 0, 0, 0);
iRetorno = BemaPrinter1.AcionaGuilhotina(1);
if (iRetorno != 1)
BemaPrinter1.AcionaGuilhotina(0);
BemaPrinter1.FechaPorta();
}
function mostra_tela_armazem(novo_dado)
{
document.getElementById("div_armazem_novo").innerHTML = novo_dado;
if(document.getElementById("envia_armazem_novo") != null)
{
document.getElementById("envia_armazem_novo").readonly=false;
document.getElementById("envia_armazem_novo").disabled=false;
}
}
function abreInformacoes(cod_acervo,cod_LinkSeqPar,cod_LinkSeqSec,cod_LinkParagrafo)
{
document.getElementById("div_info_colecao").innerHTML = "<div id='id_comentario_resultados'><div class='txt_min'> ;</div><table border='0' align='center' cellpadding='0' cellspacing='0'><tr><td align='center'><font class='msg_layer'>Aguarde...</font></td></tr></table></div>";
document.getElementById("div_info_colecao").style.display="";
x_ajax_mostra_exemplares_colecao(cod_acervo,cod_LinkSeqPar,cod_LinkSeqSec,cod_LinkParagrafo,mostra_info_exemplares);
}
function ver_cesta()
{
if(document.pesquisas.acervos_selecionados.value!="")
window.open('cesta.php','ControlWindowCesta','width='+screen.width+',height=525,top=2px,left=2px,status=yes,scrollbars=yes,resizable=yes');
else
alert("Realize uma pesquisa e adicione na cesta!");
}
function mostra_tela_chamada(novo_dado)
{
document.getElementById("dlg").style.display="";
YAHOO.example.container.dlg.show();
document.getElementById("titulo_janela").innerHTML = "Número de chamada";
document.getElementById("mostra_dados_tabela").innerHTML = novo_dado;
document.getElementById("carregar").style.display="none";
}
function carrega_dados_marc(cod_acervo_temp_js)
{
document.getElementById("div_detalhes_marc").innerHTML = "<br><br><br><br><br><br><br><br><br><br><br><br><font class='link_aguarde'>Aguarde...</font>";
document.getElementById("div_detalhes_marc").style.display="";
if(cod_acervo_temp_js=="")
cod_acervo_temp_js = document.pesquisas.codigo_acervo_tela.value;
document.pesquisas.codigo_acervo_tela.value = cod_acervo_temp_js;
x_ajax_dados_marc(cod_acervo_temp_js,mostra_dados_marc);
}
function carrega_dados_exemplar(cod_acervo_temp_js)
{
document.getElementById("div_detalhes_exemplar").innerHTML = "<br><br><br><br><br><br><br><br><br><br><br><br><font class='link_aguarde'>Aguarde...</font>";
document.getElementById("div_detalhes_exemplar").style.display="";
if(cod_acervo_temp_js=="")
cod_acervo_temp_js = document.pesquisas.codigo_acervo_tela.value;
document.pesquisas.codigo_acervo_tela.value = cod_acervo_temp_js;
if(document.getElementById("listabib") != null)
bib_temp = document.getElementById("listabib").value;
else
bib_temp = document.pesquisas.bib_selecionadas.value;
x_ajax_dados_exemplar(cod_acervo_temp_js,bib_temp,mostra_dados_exe);
}
function geraQRcodeArmazem(acao, protocolo, mensagem){
document.getElementById("qrcode_armazem").innerHTML = "<font class='link_aguarde'>Aguarde...</font>";
document.getElementById("div_qrcode_armazem").style.display="";
x_ajax_gera_qr_code_armazem(acao, protocolo, mensagem, mostraQRcodeArmazem);
}
function mostraQRcodeArmazem(result){
qrcode = result[1];
acao = result[3];
document.getElementById("qrcode_armazem").innerHTML = qrcode;
}
function fecharQRcodeArmazem(acao){
document.getElementById("div_qrcode_armazem").style.display="none";
}
function geraQRcode(acao, cod_acervo, cod_biblioteca, cod_empresa){
if(acao=='exemp'){
document.getElementById("qrcode_exemp_"+cod_biblioteca).innerHTML = "<font class='msg_layer'>Aguarde...</font>";
document.getElementById("div_qrcode_exemp_"+cod_biblioteca).style.display="";
}
if(acao=='local'){
document.getElementById("qrcode_local_"+cod_biblioteca).innerHTML = "<font class='msg_layer'>Aguarde...</font>";
document.getElementById("div_qrcode_local_"+cod_biblioteca).style.display="";
}
x_ajax_gera_qr_code(acao, cod_acervo, cod_biblioteca, cod_empresa, mostraQRcode);
}
function mostraQRcode(result){
cod_acervo = result[0];
qrcode = result[1];
cod_biblioteca = result[2];
acao = result[3];
document.getElementById("qrcode_"+acao+"_"+cod_biblioteca).innerHTML = qrcode;
}
function fecharQRcode(acao, cod_biblioteca){
document.getElementById("div_qrcode_"+acao+"_"+cod_biblioteca).style.display="none";
}
function carrega_img_local(cod_acervo_temp_js)
{
document.getElementById("div_local").innerHTML = "<br><br><br><br><br><br><br><br><br><br><br><br><font class='link_aguarde'>Aguarde...</font>";
document.getElementById("div_local").style.display="";
if(cod_acervo_temp_js=="")
cod_acervo_temp_js = document.pesquisas.codigo_acervo_tela.value;
document.pesquisas.codigo_acervo_tela.value = cod_acervo_temp_js;
x_ajax_dados_local(cod_acervo_temp_js,mostra_dados_local);
}
function carrega_referencia(cod_acervo_temp_js)
{
document.getElementById("div_referencia").innerHTML = "<br><br><br><br><br><br><br><br><br><br><br><br><font class='link_aguarde'>Aguarde...</font>";
document.getElementById("div_referencia").style.display="";
if(cod_acervo_temp_js=="")
cod_acervo_temp_js = document.pesquisas.codigo_acervo_tela.value;
document.pesquisas.codigo_acervo_tela.value = cod_acervo_temp_js;
x_ajax_dados_referencia(cod_acervo_temp_js,mostra_dados_ref);
}
function carrega_colecao(cod_acervo_temp_js)
{
if(document.getElementById("codBib_kardex") == null)
{
document.getElementById("div_colecao").innerHTML = "<br><br><br><br><br><br><br><br><br><br><br><br><font class='msg_layer'>Aguarde...</font>";
document.getElementById("div_colecao").style.display="";
}
else
{
document.getElementById("div_info_colecao").innerHTML = "<div id='id_comentario_resultados'><div class='txt_min'> ;</div><table border='0' align='center' cellpadding='0' cellspacing='0'><tr><td align='center'><font class='msg_layer'>Aguarde...</font></td></tr></table></div>";
document.getElementById("div_info_colecao").style.display="";
}
if(cod_acervo_temp_js=="")
cod_acervo_temp_js = document.pesquisas.codigo_acervo_tela.value;
document.pesquisas.codigo_acervo_tela.value = cod_acervo_temp_js;
cod_bib_k = "";
tipocol_k = "";
codPeriod_k = "";
AnoSelec_k = "";
bib_selecionadas_v = "";
campus_selecionados_tela = "";
bib_temp = "";
if(document.getElementById("listabib") != null)
bib_temp = document.getElementById("listabib").value;
else
bib_temp = document.getElementById("bib_selecionadas").value;
if(document.getElementById("codBib_kardex") != null)
cod_bib_k = document.getElementById("codBib_kardex").value;
if(document.getElementById("tipocol") != null)
tipocol_k = document.getElementById("tipocol").value;
if(document.getElementById("codPeriod") != null)
codPeriod_k = document.getElementById("codPeriod").value;
if(document.getElementById("AnoSelec") != null)
AnoSelec_k = document.getElementById("AnoSelec").value;
if(document.getElementById("campus_selecionados") != null)
campus_selecionados_tela = document.getElementById("campus_selecionados").value;
x_ajax_dados_colecao(cod_acervo_temp_js,cod_bib_k,tipocol_k,codPeriod_k,AnoSelec_k,bib_selecionadas_v,campus_selecionados_tela,bib_temp,mostra_dados_col);
}
function mostra_sumarios(cod_acervo_temp_js,processando)
{
if(processando=="A")
{
document.getElementById("div_sumario_novo").innerHTML = "<br><br><br><br><br><br><br><br><br><br><br><br><font class='link_aguarde'>Aguarde...</font>";
document.getElementById("div_sumario_novo").style.display="";
}
if(cod_acervo_temp_js=="")
cod_acervo_temp_js = document.pesquisas.codigo_acervo_tela.value;
document.pesquisas.codigo_acervo_tela.value = cod_acervo_temp_js;
x_ajax_lista_sumarios(cod_acervo_temp_js,mostra_sumarios_dados);
}
function mostra_comentarios(cod_acervo_temp_js,processando){
if(processando=="A"){
document.getElementById("div_comentario_novo").innerHTML = "<br><br><br><br><br><br><br><br><br><br><br><br><font class='link_aguarde'>Aguarde...</font>";
document.getElementById("div_comentario_novo").style.display="";
}
if(cod_acervo_temp_js=="")
cod_acervo_temp_js = document.pesquisas.codigo_acervo_tela.value;
document.pesquisas.codigo_acervo_tela.value = cod_acervo_temp_js;
x_ajax_mostra_comentarios(cod_acervo_temp_js,mostra_comentarios_dados);
}
function mostra_comentario_geral(cod_pessoa,cod_bib,processando)
{
if(processando=="A")
{
document.getElementById("div_comentario_geral_novo").innerHTML = "<br><br><br><br><br><br><br><br><br><br><br><br><font class='link_aguarde'>Aguarde...</font>";
document.getElementById("div_comentario_geral_novo").style.display="";
}
if(document.getElementById("listabib") != null)
bib_temp2 = document.getElementById("listabib").value;
else
bib_temp2 = document.pesquisas.bib_selecionadas.value;
x_ajax_mostra_comentario_geral(cod_pessoa,cod_bib,bib_temp2,mostra_comentarios_dados_geral);
}
function seta_dados_pessoa(novo_dado){
document.pesquisas.gravando.value="Gravar";
document.pesquisas.gravando.disabled=false;
if(novo_dado[1]!="erro"){
if(typeof novo_dado == "object"){
if(novo_dado[1]!="")
document.getElementById("nome2").value=novo_dado[1];
if(novo_dado[2]!="")
document.getElementById("fone2").value=novo_dado[2];
if(novo_dado[3]!="")
document.getElementById("e_mail2").value=novo_dado[3];
if(novo_dado[5]!="")
document.getElementById("botton").value=novo_dado[5];
}
else{
alert(novo_dado);
document.getElementById("nome2").value="";
document.getElementById("fone2").value="";
document.getElementById("e_mail2").value="";
document.getElementById("botton").value="";
}
if(document.getElementById("siimage9")!=null){
document.getElementById("siimage9").src = "../captcha/securimage_show.php?sid=" + Math.random();
document.getElementById("ct_captcha9").value="";
}
}
else{
alert (novo_dado[2]);
}
}
function retorno_gravar(novo_dado)
{
if(novo_dado=="OK")
{
alert("Gravou com sucesso!");
document.getElementById("codBib").value="";
document.getElementById("codigo").value="";
document.getElementById("nome2").value="";
document.getElementById("fone2").value="";
document.getElementById("e_mail2").value="";
document.getElementById("informacao").value="";
if(document.getElementById("senha_acesso_cog")!=null)
document.getElementById("senha_acesso_cog").value="";
if(document.getElementById("ct_captcha9")!=null)
document.getElementById("ct_captcha9").value="";
}
else
alert(novo_dado);
document.pesquisas.gravando.value="Gravar";
document.pesquisas.gravando.disabled=false;
if(document.getElementById("siimage9")!=null)
{
document.getElementById("siimage9").src = "../captcha/securimage_show.php?sid=" + Math.random();
document.getElementById("ct_captcha9").value="";
}
}
function mostra_sugestoes(processando)
{
if(processando=="A")
{
document.getElementById("div_sugestoes_novo").innerHTML = "<br><br><br><br><br><br><br><br><br><br><br><br><font class='link_aguarde'>Aguarde...</font>";
document.getElementById("div_sugestoes_novo").style.display="";
}
if(document.getElementById("listabib") != null)
bib_temp = document.getElementById("listabib").value;
else
bib_temp = document.pesquisas.bib_selecionadas.value;
x_ajax_mostra_sugestoes(bib_temp,mostra_sugestoes_dado);
}
function seta_dados_pessoa_novo(novo_dado){
document.pesquisas.gravando_novo.value="Gravar";
document.pesquisas.gravando_novo.disabled=false;
if(novo_dado[1] != "erro"){
if(typeof novo_dado == "object"){
if(novo_dado[1]!="")
document.getElementById("nome2_novo").value=novo_dado[1];
if(novo_dado[2]!="")
document.getElementById("fone2_novo").value=novo_dado[2];
if(novo_dado[3]!="")
document.getElementById("e_mail2_novo").value=novo_dado[3];
if(novo_dado[5]!="")
document.getElementById("botton_novo").value=novo_dado[5];
}
else{
alert(novo_dado);
document.getElementById("nome2_novo").value="";
document.getElementById("fone2_novo").value="";
document.getElementById("e_mail2_novo").value="";
document.getElementById("botton_novo").value="";
}
}else{
alert(novo_dado[2]);
}
if(document.getElementById("siimage10")!=null){
document.getElementById("siimage10").src = "../captcha/securimage_show.php?sid=" + Math.random();
document.getElementById("ct_captcha10").value="";
}
}
function retorno_gravar2_novo(novo_dado){
if(novo_dado=="OK"){
alert("Gravou com sucesso!");
document.getElementById("autor").value="";
document.getElementById("titulo").value="";
document.getElementById("edicao").value="";
document.getElementById("editor").value="";
document.getElementById("issn").value="";
document.getElementById("periodico").value="";
document.getElementById("informacao_novo").value="";
document.getElementById("codBib_novo").value="";
document.getElementById("codigo_novo").value="";
document.getElementById("nome2_novo").value="";
document.getElementById("fone2_novo").value="";
document.getElementById("e_mail2_novo").value="";
if(document.getElementById("senha_acesso_sg")!=null)
document.getElementById("senha_acesso_sg").value="";
if(document.getElementById("ct_captcha10")!=null)
document.getElementById("ct_captcha10").value="";
}
else
alert(novo_dado);
document.pesquisas.gravando_novo.value="Gravar";
document.pesquisas.gravando_novo.disabled=false;
if(document.getElementById("siimage10")!=null){
document.getElementById("siimage10").src = "../captcha/securimage_show.php?sid=" + Math.random();
document.getElementById("ct_captcha10").value="";
}
}
function acao_tab(acao){
document.pesquisas.controla_acao.value = acao;
if(document.getElementById("id_paginas_temp") != null){
document.getElementById("id_paginas_temp").style.display="none";
if(acao=="resultado")
document.getElementById("id_paginas_temp").style.display="";
}
if(acao=="resultado"){
if(document.getElementById("termo_para_pesquisa") != null){
termo_tela = document.getElementById("termo_para_pesquisa").value;
if(termo_tela.trim()=="Digite o termo para a pesquisa" || termo_tela.trim()=="")
return;
}
document.getElementById("id_resultados_temp").innerHTML = "<div class='pmu_dados1'><div id='id_loading2' align='center'><img src='../img/loading.gif'>Aguarde...</div></div>";
document.pesquisas.codigo_autoridade.value='';
get_result('0');
}
if(document.getElementById("listabib") != null)
bib_temp = document.getElementById("listabib").value;
else
bib_temp = document.getElementById("bib_selecionadas").value;
if(bib_temp.trim()=="")
if(document.getElementById("bib_todos_af") != null)
bib_temp = document.getElementById("bib_todos_af").value;
campus_selecionados_valor = document.pesquisas.campus_selecionados.value;
if(acao=="cesta"){
document.getElementById("id_cesta_temp").innerHTML = "<div class='pmu_dados1'><div id='id_loading2' align='center'><img src='../img/loading.gif'>Aguarde...</div></div>";
x_ajax_tela_cesta("cesta",retorno_tela_cesta);
}
if(acao=="cestap"){
document.getElementById("id_cesta_temp").innerHTML = "<div class='pmu_dados1'><div id='id_loading2' align='center'><img src='../img/loading.gif'>Aguarde...</div></div>";
x_ajax_tela_cesta("cestap",retorno_tela_cesta);
}
if(acao=="cestal"){
document.getElementById("id_cesta_temp").innerHTML = "<div class='pmu_dados1'><div id='id_loading2' align='center'><img src='../img/loading.gif'>Aguarde...</div></div>";
x_ajax_tela_cesta("cestal",retorno_tela_cesta);
}
if(acao=="autores"){
document.getElementById("id_autores_temp").innerHTML = "<div class='pmu_dados1'><div id='id_loading2' align='center'><img src='../img/loading.gif'>Aguarde...</div></div>";
id_tela_unica = document.pesquisas.id_php_tela_refresh.value;
x_ajax_mostra_autores_assuntos('A',id_tela_unica,bib_temp,campus_selecionados_valor,mostra_autores);
}
if(acao=="assuntos"){
document.getElementById("id_assuntos_temp").innerHTML = "<div class='pmu_dados1'><div id='id_loading2' align='center'><img src='../img/loading.gif'>Aguarde...</div></div>";
id_tela_unica = document.pesquisas.id_php_tela_refresh.value;
x_ajax_mostra_autores_assuntos('S',id_tela_unica,bib_temp,campus_selecionados_valor,mostra_assuntos);
}
if(acao=="redepergamum"){
termo_tela="";
if(document.getElementById("termo_para_pesquisa")!=null)
termo_tela = document.getElementById("termo_para_pesquisa").value;
else if(document.getElementById("termo_para_pesquisa1")!=null)
termo_tela = document.getElementById("termo_para_pesquisa1").value;
if(termo_tela.trim()=="")
return;
if(document.getElementById("id_filtros") != null)
document.getElementById('id_filtros').style.display="none";
if(document.getElementById("some_ebsco1") != null)
document.getElementById("some_ebsco1").style.display="none";
if(document.getElementById("some_ebsco2") != null)
document.getElementById("some_ebsco2").style.display="none";
document.getElementById("id_redepergamum_temp").innerHTML = "<div class='pmu_dados1'><div id='id_loading2' align='center'><img src='../img/loading.gif'>Aguarde...</div></div>";
x_ajax_redepergamum(termo_tela,mostra_redepergamum);
}
if(acao=="rede_livrarias"){
termo_tela="";
if(document.getElementById("termo_para_pesquisa")!=null)
termo_tela = document.getElementById("termo_para_pesquisa").value;
else if(document.getElementById("termo_para_pesquisa1")!=null)
termo_tela = document.getElementById("termo_para_pesquisa1").value;
if(termo_tela.trim()=="")
return;
if(document.getElementById("id_filtros") != null)
document.getElementById('id_filtros').style.display="none";
valor_Obra="";
if(document.getElementById("codMat") != null){
indiceObra=document.getElementById("codMat").selectedIndex;
valor_Obra=document.getElementById("codMat").options[indiceObra].value;
}
if(document.getElementById("some_ebsco1") != null)
document.getElementById("some_ebsco1").style.display="none";
if(document.getElementById("some_ebsco2") != null)
document.getElementById("some_ebsco2").style.display="none";
document.getElementById("id_rede_livrarias_temp").innerHTML = "<div class='pmu_dados1'><div id='id_loading2' align='center'><img src='../img/loading.gif'>Aguarde...</div></div>";
x_ajax_rede_pesquisa_livrarias(termo_tela,valor_Obra,mostra_rede_pesquisa_livrarias);
}
if(acao=="rede_ebsco"){
termo_tela="";
if(document.getElementById("termo_para_pesquisa")!=null)
termo_tela = document.getElementById("termo_para_pesquisa").value;
else if(document.getElementById("termo_para_pesquisa1")!=null)
termo_tela = document.getElementById("termo_para_pesquisa1").value;
if(termo_tela.trim()=="")
return;
if(document.getElementById("id_filtros") != null)
document.getElementById('id_filtros').style.display="none";
document.getElementById("id_rede_ebsco_temp").innerHTML = "<div class='pmu_dados1'><div id='id_loading2' align='center'><img src='../img/loading.gif'>Aguarde...</div></div>";
indice_reg_pag=document.pesquisas.n_registros_por_pagina.selectedIndex;
n_registros_pag=document.pesquisas.n_registros_por_pagina.options[indice_reg_pag].value;
if(document.getElementById("some_ebsco1") != null)
document.getElementById("some_ebsco1").style.display="none";
if(document.getElementById("some_ebsco2") != null)
document.getElementById("some_ebsco2").style.display="none";
lookfor = termo_tela;
search = 'y';
type='keyword';
x_ajax_redeebsco(lookfor,search,type,n_registros_pag,document.getElementById("ebsco_pag_clicado").value,mostra_redeebsco);
}
if(acao=="rede_oai_geral"){
termo_tela="";
oai_empresas="";
if(document.getElementById('botao_oai_pesquisa').value=="clicou")
{
if(document.getElementById("total_lista_oai")!=null){
for(i=1;i<=document.getElementById("total_lista_oai").value;i++)
{
if(document.getElementById("checando_"+i).checked==true)
oai_empresas = oai_empresas+"MCL"+document.getElementById("checando_"+i).value;
}
document.getElementById("oai_empresas_temp").value = oai_empresas;
}
if(document.getElementById("termo_para_pesquisa")!=null)
termo_tela = document.getElementById("termo_para_pesquisa").value;
else if(document.getElementById("termo_para_pesquisa1")!=null)
termo_tela = document.getElementById("termo_para_pesquisa1").value;
if(termo_tela.trim()=="")
return;
if(document.getElementById("id_filtros") != null)
document.getElementById('id_filtros').style.display="none";
if(document.getElementById("id_filtros_mobile") != null)
document.getElementById('id_filtros_mobile').style.display="none";
valor_Obra="";
if(document.getElementById("codMat") != null){
indiceObra=document.getElementById("codMat").selectedIndex;
valor_Obra=document.getElementById("codMat").options[indiceObra].value;
}
if(document.getElementById("some_ebsco1") != null)
document.getElementById("some_ebsco1").style.display="none";
if(document.getElementById("some_ebsco2") != null)
document.getElementById("some_ebsco2").style.display="none";
if(document.getElementById("empresa_oai_temp") != null)
{
empresa_oai = document.getElementById("empresa_oai_temp").value;
document.getElementById("empresa_oai_temp").value = "";
}
document.getElementById("id_oai_geral_temp").innerHTML = "<div class='pmu_dados1'><div id='id_loading2' align='center'><img src='../img/loading.gif'>Aguarde...</div></div>";
x_ajax_rede_oai_geral(termo_tela,empresa_oai,oai_empresas,mostra_rede_oai_geral);
}
else
x_ajax_tabela_oai_inst('',mostra_rede_oai_servidores);
}
if(acao=="rede_oai_local"){
termo_tela="";
if(document.getElementById("termo_para_pesquisa")!=null)
termo_tela = document.getElementById("termo_para_pesquisa").value;
else if(document.getElementById("termo_para_pesquisa1")!=null)
termo_tela = document.getElementById("termo_para_pesquisa1").value;
if(termo_tela.trim()=="")
return;
if(document.getElementById("id_filtros") != null)
document.getElementById('id_filtros').style.display="none";
if(document.getElementById("some_ebsco1") != null)
document.getElementById("some_ebsco1").style.display="none";
if(document.getElementById("some_ebsco2") != null)
document.getElementById("some_ebsco2").style.display="none";
if(document.getElementById("empresa_oai_temp") != null)
{
empresa_oai = document.getElementById("empresa_oai_temp").value;
document.getElementById("empresa_oai_temp").value = "";
}
document.getElementById("id_oai_local_temp").innerHTML = "<div class='pmu_dados1'><div id='id_loading2' align='center'><img src='../img/loading.gif'>Aguarde...</div></div>";
x_ajax_rede_oai_local(termo_tela,empresa_oai,mostra_rede_oai_local);
}
if(acao=="gedweb_target") {
termo_tela="";
if(document.getElementById("termo_para_pesquisa")!=null)
termo_tela = document.getElementById("termo_para_pesquisa").value;
else if(document.getElementById("termo_para_pesquisa1")!=null)
termo_tela = document.getElementById("termo_para_pesquisa1").value;
if(termo_tela.trim()=="")
return;
if(document.getElementById("some_ebsco1") != null)
document.getElementById("some_ebsco1").style.display="none";
if(document.getElementById("some_ebsco2") != null)
document.getElementById("some_ebsco2").style.display="none";
document.getElementById('id_gedweb_target').innerHTML = '<div class="pmu_dados1"><div id="id_loading2" align="center"><img src="../img/loading.gif">Aguarde...</div></div>';
x_ajax_ged_produtos(termo_tela, mostra_ged_produtos);
}
if(acao=="abnt_pesquisa"){
termo_tela="";
if(document.getElementById("termo_para_pesquisa")!=null)
termo_tela = document.getElementById("termo_para_pesquisa").value;
else if(document.getElementById("termo_para_pesquisa1")!=null)
termo_tela = document.getElementById("termo_para_pesquisa1").value;
if(termo_tela.trim()=="")
return;
if(document.getElementById("id_filtros") != null)
document.getElementById('id_filtros').style.display="none";
if(document.getElementById("some_ebsco1") != null)
document.getElementById("some_ebsco1").style.display="none";
if(document.getElementById("some_ebsco2") != null)
document.getElementById("some_ebsco2").style.display="none";
document.getElementById('id_abnt').innerHTML = '<div class="pmu_dados1"><div id="id_loading2" align="center"><img src="../img/loading.gif">Aguarde...</div></div>';
x_ajax_abnt_pesquisa(termo_tela, mostra_abnt_pesquisa);
}
}
function mostra_rede_oai_servidores(novo_dado)
{
if(novo_dado=="")
novo_dado="<div class='pmu_dados1'><b><center><br>Nenhum registro encontrado</center></b></div>";
document.getElementById("id_oai_geral_temp").innerHTML = novo_dado;
document.getElementById('id_filtros').style.display="none";
document.getElementById('id_filtros_mobile').style.display="block";
}
function adiciona_cesta_livrarias(dado_xml,seq)
{
$("#add_cesta_"+seq).html("Aguarde...");
x_ajax_adiciona_cesta_livrarias(dado_xml,seq,confirma_operacao);
}
function confirma_operacao(novo_dado)
{
$("#add_cesta_"+novo_dado).html("Inserido");
$("#add_cesta_"+novo_dado).attr("href","javascript:void(0);");
$("#add_cesta_"+novo_dado).removeClass().addClass("link_azul_claro_cesta");
}
function ebsco_pagina(pag)
{
document.getElementById("ebsco_pag_clicado").value = pag;
acao_tab("rede_ebsco");
}
function ebsco_dados_acervo(record,db,an,lookfor,type)
{
MM_showHideLayers('dados_redes','','show');
document.getElementById("div_detalhes_dados_redes").innerHTML = "<br><br><br><br><br><br><br><br><br><br><br><br><font class='link_aguarde'>Aguarde...</font>";
x_ajax_redeebsco_dados_acervo(record,db,an,lookfor,type,mostra_dados_div_redes);
}
function remover_selec(cont,acao){
total = cont;
frase = "";
for(i=1;i<=total;i++){
if(document.getElementById("selec"+i).checked==true){
frase = frase+"@!%"+document.getElementById("selec"+i).value;
}
}
if(frase == "")
alert("Selecione o(s) título(s) que deseja apagar");
else
x_ajax_apaga_acervo_cesta(frase,acao,r_apaga_acervo_cesta);
}
function mostra_autores(novo_dado)
{
if(novo_dado=="")
novo_dado="<div class='pmu_dados1'><b><center><br>Nenhum registro encontrado</center></b></div>";
document.getElementById("id_resultados_temp").innerHTML = novo_dado;
document.getElementById("get_result").innerHTML = novo_dado;
}
function mostra_assuntos(novo_dado)
{
if(novo_dado=="")
novo_dado="<div class='pmu_dados1'><b><center><br>Nenhum registro encontrado</center></b></div>";
document.getElementById("id_resultados_temp").innerHTML = novo_dado;
document.getElementById("get_result").innerHTML = novo_dado;
}
function mostra_redepergamum(novo_dado)
{
if(novo_dado[0]=="")
novo_dado[0]="<div class='pmu_dados1'><b><center><br>Nenhum registro encontrado</center></b></div>";
document.getElementById("id_redepergamum_temp").innerHTML = novo_dado[0];
document.getElementById("redepergamum_total_pesquisa").innerHTML = "\""+novo_dado[1]+"\"";
}
function mostra_rede_pesquisa_livrarias(novo_dado)
{
if(novo_dado[1]=="")
novo_dado[1]="<div class='pmu_dados1'><b><center><br>Nenhum registro encontrado</center></b></div>";
document.getElementById("id_rede_livrarias_temp").innerHTML = novo_dado[1];
document.getElementById("rede_livrarias_total_pesquisa").innerHTML = "\""+novo_dado[0]+"\"";
$(document).ready(function(){
$('.popbox').popbox();
});
}
function mostra_rede_oai_geral(novo_dado)
{
if(novo_dado[1]=="")
novo_dado[1]="<div class='pmu_dados1'><b><center><br>Nenhum registro encontrado</center></b></div>";
document.getElementById("id_oai_geral_temp").innerHTML = novo_dado[1];
document.getElementById("rede_oai_geral_total_pesquisa").innerHTML = "\""+novo_dado[0]+"\"";
consulta_filtros_oai('G');
}
function mostra_rede_oai_tabela(novo_dado)
{
document.getElementById("id_oai_geral_temp").innerHTML = novo_dado;
consulta_filtros_oai('G');
}
function mostra_rede_oai_local(novo_dado)
{
if(novo_dado[1]=="")
novo_dado[1]="<div class='pmu_dados1'><b><center><br>Nenhum registro encontrado</center></b></div>";
document.getElementById("id_oai_local_temp").innerHTML = novo_dado[1];
document.getElementById("rede_oai_local_total_pesquisa").innerHTML = "\""+novo_dado[0]+"\"";
consulta_filtros_oai('L');
}
function mostra_redeebsco(novo_dado)
{
if(novo_dado[0]=="")
novo_dado[0]="<div class='pmu_dados1'><b><center><br>Nenhum registro encontrado</center></b></div>";
document.getElementById("id_rede_ebsco_temp").innerHTML = novo_dado[0];
document.getElementById("ebsco_total_pesquisa").innerHTML = novo_dado[1];
}
function detalhes_consultas_redes(cod_acervo_thot,tipo)
{
MM_showHideLayers('dados_redes','','show');
document.getElementById("div_detalhes_dados_redes").innerHTML = "<br><br><br><br><br><br><br><br><br><br><br><br><font class='link_aguarde'>Aguarde...</font>";
if(cod_acervo_thot!="")
document.pesquisas.codigo_acervo_tela.value = cod_acervo_thot;
else
cod_acervo_thot = document.pesquisas.codigo_acervo_tela.value;
x_ajax_detalhes_redes(cod_acervo_thot,tipo,mostra_dados_div_redes);
}
function mostra_consulta_refinamento(novo_dado){
if(novo_dado[2]=="ok"){
if(document.getElementById("id_biblioteca") != null)
if(novo_dado[1]=="div_filtro_pesq_bib" && document.getElementById("id_biblioteca").value.trim()!="")
novo_dado[0]="";
document.getElementById(novo_dado[1]).innerHTML = novo_dado[0];
}
else
alert(novo_dado[2]);
}
function busca_refinamento_filtros(tipo,codigo_desc){
campus_selecionados_valor = document.pesquisas.campus_selecionados.value;
if(document.getElementById("listabib") != null)
bib_temp = document.getElementById("listabib").value;
else
bib_temp = document.getElementById("bib_selecionadas").value;
if(bib_temp.trim()=="")
if(document.getElementById("bib_todos_af") != null)
bib_temp = document.getElementById("bib_todos_af").value;
if(tipo=='X'){
if(codigo_desc=="Capa")
codigo_desc="capa";
if(codigo_desc=="Disponível p/ emprést.")
codigo_desc="emprestimo";
if(codigo_desc=="On-line")
codigo_desc="acesso_remoto";
if(codigo_desc=="Acessibilidade")
codigo_desc="acessibilidade";
if(codigo_desc=="Disp. p/ reserva")
codigo_desc="reservas";
}
if(tipo=='S'){
document.getElementById("id_assuntos_temp").innerHTML = "<div class='pmu_dados1'><div id='id_loading2' align='center'><img src='../img/loading.gif'>Aguarde...</div></div>";
id_tela_unica = document.pesquisas.id_php_tela_refresh.value;
x_ajax_mostra_autores_assuntos('S',id_tela_unica,bib_temp,campus_selecionados_valor,mostra_assuntos);
}
else if(tipo=='A'){
document.getElementById("id_autores_temp").innerHTML = "<div class='pmu_dados1'><div id='id_loading2' align='center'><img src='../img/loading.gif'>Aguarde...</div></div>";
id_tela_unica = document.pesquisas.id_php_tela_refresh.value;
x_ajax_mostra_autores_assuntos('A',id_tela_unica,bib_temp,campus_selecionados_valor,mostra_autores);
}
else{
document.pesquisas.controla_acao.value = "filtro_esquerdo";
document.pesquisas.filtro_esquerdo_tipo.value = tipo;
document.pesquisas.filtro_esquerdo_parametro.value = codigo_desc;
if(document.getElementById("id_resultados_temp") != null)
document.getElementById("id_resultados_temp").innerHTML = "<div class='pmu_dados1'><div id='id_loading2' align='center'><img src='../img/loading.gif'>Aguarde...</div></div>";
if (!(window.location.href.indexOf("autoridade.php") > -1))
document.pesquisas.codigo_autoridade.value='';
if(document.getElementById("termo_para_pesquisa") != null){
if(document.pesquisas.termo_para_pesquisa.value.trim()=="" )
get_result_letra('0');
else
get_result('0');
}
else
get_result('0');
}
}
function lista_fornecedores(isbn_issn,tipo_pesquisa,cod_acervo)
{
document.getElementById("div_comprar_online").innerHTML = "<br><br><br><br><br><br><br><br><br><br><br><br><font class='link_aguarde'>Aguarde...</font>";
document.getElementById("div_comprar_online").style.display="";
if(cod_acervo!="")
document.pesquisas.codigo_acervo_tela.value = cod_acervo;
else
cod_acervo = document.pesquisas.codigo_acervo_tela.value;
x_ajax_rede_livrarias(isbn_issn,tipo_pesquisa,cod_acervo,mostra_dados_livrarias);
}
function mostra_dados_livrarias(novo_dado)
{
document.getElementById("div_comprar_online").innerHTML = novo_dado;
}
function limpar_cad_compras()
{
document.getElementById("compras_justiticativa").value="";
document.getElementById("compras_obs").value="";
document.getElementById("compras_prioridade").value="";
}
var gravar_cad_compras = function(cont_livrarias){
jus = $("#compras_justiticativa").val();
if($.trim(jus)==""){
alert("O campo justificativa deve ser preenchido!");
$("#compras_justiticativa").select();
return;
}
obs = $("#compras_obs").val();
if($.trim(obs)==""){
alert("O campo observação deve ser preenchido!");
$("#compras_obs").select();
return;
}
pri = $("#compras_prioridade").val();
if(pri==""){
alert("O campo prioridade deve ser selecionado!");
$("#compras_prioridade").select();
return;
}
executa_return = "nao";
nao_tem_item_selecionado = true;
total = cont_livrarias;
total--;
frase="";
frase_itens="";
for(i=1;i<=total;i++){
if(document.getElementById("selec"+i).checked==true){
nao_tem_item_selecionado = false;
frase=frase+"@!%"+document.getElementById("selec"+i).value;
if(document.getElementById("qtde_liv_"+i).value.trim()==""){
alert("Por favor preencha a quantidade do item: "+i);
document.getElementById("qtde_liv_"+i).focus();
executa_return = "sim";
i = total+1;
}
else
frase_itens=frase_itens+"@!%"+document.getElementById("qtde_liv_"+i).value.trim();
}
}
if(nao_tem_item_selecionado){
alert("Selecione algum item!");
return;
}
if(executa_return == "sim")
return;
document.getElementById("compras_grava").style.display = "none";
document.getElementById("compras_limpar").style.display = "none";
document.getElementById("carregando_cesta_livraria").style.display = "block";
x_ajax_gera_protocolo(jus,obs,pri,frase,frase_itens,mostra_protocolo);
}
var mostra_protocolo = function(novo_dado){
alert(novo_dado);
document.getElementById("compras_grava").style.display = "block";
document.getElementById("compras_limpar").style.display = "block";
document.getElementById("carregando_cesta_livraria").style.display = "none";
$("#compras_justiticativa").val("");
$("#compras_obs").val("");
$("#compras_prioridade").val("");
}
function mostra_cad_nao_encontrados()
{
x_ajax_cad_nao_encontrados(mostra_nao_encontrados_dado);
}
function mostra_nao_encontrados_dado(novo_dado)
{
document.getElementById("div_sgc_nao_encontrados").innerHTML = novo_dado;
}
function limpatela_nencontrado()
{
document.getElementById("tipo_obra").value="";
document.getElementById("titulo").value="";
document.getElementById("subtitulo").value="";
document.getElementById("autor").value="";
document.getElementById("local").value="";
document.getElementById("editora").value="";
document.getElementById("edicao").value="";
document.getElementById("ano").value="";
document.getElementById("volume").value="";
document.getElementById("isbn_issn").value="";
}
function grava_nao_encontrado()
{
tipo_obra_temp = document.getElementById("tipo_obra").value;
if(tipo_obra_temp.trim() == "")
{
alert("Selecione um tipo");
document.getElementById("tipo_obra").focus();
return;
}
titulo_temp = document.getElementById("titulo").value;
if(titulo_temp.trim() == "")
{
alert("Por favor preencher o campo título");
document.getElementById("titulo").focus();
return;
}
subtitulo_temp = document.getElementById("subtitulo").value;
autor_temp = document.getElementById("autor").value;
local_temp = document.getElementById("local").value;
editora_temp = document.getElementById("editora").value;
edicao_temp = document.getElementById("edicao").value;
ano_temp = document.getElementById("ano").value;
volume_temp = document.getElementById("volume").value;
isbn_issn_temp = document.getElementById("isbn_issn").value;
document.getElementById("gravando_nao_encontrado").value="Aguarde..";
document.getElementById("gravando_nao_encontrado").disabled=true;
x_ajax_grava_nao_encontrado(tipo_obra_temp,titulo_temp,subtitulo_temp,autor_temp,local_temp,editora_temp,edicao_temp,ano_temp,volume_temp,isbn_issn_temp,retorno_grava_nao_encontrado);
}
function retorno_grava_nao_encontrado(novo_dado)
{
alert(novo_dado);
document.getElementById("gravando_nao_encontrado").value="Gravar";
document.getElementById("gravando_nao_encontrado").disabled=false;
limpatela_nencontrado();
}
function cria_lista_link(cod_acervo, link_codigo, link_descricao, gera_exemplar){
document.getElementById("lista_link_museu").innerHTML = "<br><br><br><br><br><br><br><br><br><br><br><br><font class='link_aguarde'>Aguarde...</font>";
document.getElementById("lista_link_museu").style.display="";
if(cod_acervo=="")
cod_acervo = document.pesquisas.codigo_acervo_tela.value;
document.pesquisas.codigo_acervo_tela.value = cod_acervo;
x_ajax_cria_lista_link(cod_acervo, link_codigo, link_descricao, gera_exemplar, mostra_lista_link);
}
function mostra_lista_link(result){
if(result[1] != "")
alert(result[1]);
document.getElementById("lista_link_museu").innerHTML = result[0];
}
function busca_ged_pesquisa(uri, pag, total_pag) {
$('#gedweb_uri').val(uri);
termo_tela = '';
if(document.getElementById('termo_para_pesquisa') != null)
termo_tela = document.getElementById('termo_para_pesquisa').value;
else if(document.getElementById('termo_para_pesquisa1') != null)
termo_tela = document.getElementById('termo_para_pesquisa1').value;
if(termo_tela.trim() == '')
return;
var tipoPesquisa = "";
if(uri.lastIndexOf("nbr") > -1)
tipoPesquisa = "nbr";
document.getElementById('id_gedweb_target').innerHTML = '<input type="hidden" id="tipoPesquisa" name="tipoPesquisa" value="'+tipoPesquisa+'"><div class="pmu_dados1"><div id="id_loading2" align="center"><img src="../img/loading.gif">Aguarde...</div></div>';
x_ajax_ged_pesquisa(termo_tela, uri, pag, total_pag, mostra_ged_pesquisa);
}
function mostra_ged_pesquisa(retorno) {
var icon_class;
var icon_tooltip;
var tipoPesquisa = document.getElementById('tipoPesquisa').value;
var nomeCampoCodigo = 'Autor';
var quebraLinha = "";
if(tipoPesquisa == "nbr"){
nomeCampoCodigo = 'Comitê';
quebraLinha = "<BR><BR>";
}
$('#id_gedweb_target').html('');
if($('#some_ebsco2') != null) {
$('#some_ebsco2').hide();
}
if(jQuery.isEmptyObject(retorno)) {
$('#id_gedweb_target').append('<div class="pmu_dados1"><b><center><br />Não existe registro cadastrado com o(s) filtro(s) utilizado(s).<br /><br />Sugestão: Pesquise nas outras guias</center></b></div>');
} else if(retorno.hasOwnProperty('erro')){
$('#id_gedweb_target').append('<div class="pmu_dados1"><b><center><br />' + retorno.erro + '</center></b></div>');
} else {
$.each(retorno, function (key, data) {
if(!data.LinkVisualizacao) {
icon_class = 'color_silver';
icon_tooltip = 'Documento não disponível';
} else if(data.Possuida) {
icon_class = 'color_azul_claro';
icon_tooltip = 'Documento completo';
} else {
icon_class = 'color_bordo';
icon_tooltip = 'Documento parcial';
}
$('#id_gedweb_target').append('<div class="r_table_row">' +
'<div class="r_table_cell txt_azul_claro linha_lateral">' +
data.Rank + '.' +
'<p class="tooltip_l"' + (data.LinkVisualizacao ? 'onclick="' + data.LinkVisualizacao + '"' : '') + ' style="cursor: pointer;">' +
'<i style="background-image:url(../img/buttons_vinculos_cadeado.png);background-repeat: repeat;height:34px;width:34px;display: block;margin-top: -8px;margin-left: -10px;position: absolute;"></i>' +
'<i class="fa fa-files-o ' + icon_class + '" style="font-size: 16px;"></i>' +
'<span class="tooltiptext_l">' + icon_tooltip + '</span>' +
'</p>' +
'</div>' +
(data.UrlThumbnail ? '<div class="r_table_cell" style="width: 150px;"><img style="cursor: pointer;" src="' + data.UrlThumbnail + '" ' + (data.LinkVisualizacao ? 'onclick="' + data.LinkVisualizacao + '"' : '') + ' /></div>' : '') +
'<div class="r_table_cell">' +
'<div>' + (data.LinkDetalhes ? '<a onclick="' + data.LinkDetalhes + '" class="link_azul" style="cursor: pointer;" target="_blank">' + data.Titulo + '</a>' : data.Titulo) + '</div>' +
(data.Codigo ? '<br><div><strong>Código: </strong>' + data.Codigo + '</div>' : '') +
(data.Edicao ? '<div><strong>Edição: </strong>' + data.Edicao + '</div>' : '') +
(data.Autor ? '<div><strong>'+nomeCampoCodigo+': </strong>' + data.Autor + '</div>' : '') +
(data.Data ? '<div><strong>Data: </strong>' + data.Data + '</div>' : '') +
(data.DocumentoAtualizado ? '<div><strong>Atualizado: </strong>' + (data.DocumentoAtualizado ? 'Sim' : 'Não') + '</div>' : '') +
'</div>' +
'</div>');
});
$('.r_table_row:even').addClass('pmu_dados1');
$('.r_table_row:odd').addClass('pmu_dados2');
if(retorno[0].TotalPaginas > 1) {
paginacao_ged(retorno[0].PaginaAtual, retorno[0].RegistrosPorPagina, retorno[0].TotalRegistros);
$("#some_ebsco2").show();
$("#id_paginas_temp").show();
} else {
$("#some_ebsco2").hide();
$("#id_paginas_temp").hide();
}
}
}
function mostra_ged_produtos(retorno) {
if(retorno=="INCOMPLETO")
{
document.getElementById('id_gedweb_target').innerHTML = '<div class="pmu_dados1"><center><br><br><strong>Solicite a ativação da Target GEDWeb através do Sistema de Atendimento do Pergamum!</strong></center></div>';
return;
}
var primeiro_produto;
$('#id_gedweb_target').html('');
if($('#id_filtros') != null) {
$('#id_filtros').html('');
$('#id_filtros').show();
$('#id_filtros_mobile').hide();
$('#id_filtros').append(
'<div style="cursor:pointer" class="id_filtros_mobile" title="Fechar" onclick="document.getElementById(\'id_filtros\').style.display="none";document.getElementById(\'id_filtros_mobile\').style.display="block";">«</div>' +
'<pre><div class="refina_label">Refinar sua busca</div></pre>' +
'<div id="produtos_ged" class="div_config_cx2"></div>'
);
}
if(retorno.hasOwnProperty('erro')){
$('#produtos_ged').html('');
$('#id_gedweb_target').append('<div class="pmu_dados1"><b><center><br />' + retorno.erro + '</center></b></div>');
$('#id_filtros').hide();
} else {
$.each(retorno, function (key, data) {
if(primeiro_produto == null) {
primeiro_produto = data.UriSearch;
}
$('#produtos_ged').append(
'<div class="div_padding2">' +
'<a href="javascript:busca_ged_pesquisa(\'' + data.UriSearch + '\', 1);" class="link_cinza10">' +
data.Nome + ' (' + data.TotalRegistrosEncontrados + ')' +
'</a>' +
'</div>');
});
busca_ged_pesquisa(primeiro_produto, 1, $('#n_registros_por_pagina').val());
}
}
function paginacao_ged(pag_atual, reg_pagina, reg_total) {
var pag_html = '<table width="100%" border="0" cellspacing="0" cellpadding="0">'
+ '<tbody>'
+ '<tr>'
+ '<td class="pmu_div_protecao_2" nowrap="">'
+ '<div align="right">'
+ '<span class="txt_acervo10">'
+ (pag_atual != 1 ? '<a href="javascript:void(get_result(' + (pag_atual - 1) + '))" class="pmu_paginacao2">« Anterior</a>' : '')
+ ' ;'
+ '<font class="txt_acervo2">' + (pag_atual * reg_pagina - reg_pagina + 1) + ' ;- ;' + (pag_atual * reg_pagina < reg_total ? pag_atual * reg_pagina : reg_total) + '</font>'
+ ' ; ;'
+ (pag_atual * reg_pagina < reg_total ? '<a href="javascript:void(get_result(' + (pag_atual + 1) + '))" class="pmu_paginacao2">Próxima »</a>' : '')
+ '</span>'
+ '</div>'
+ '</td>'
+ '</tr>'
+ '</tbody>'
+ '</table>';
$("#some_ebsco2").html(pag_html);
$("#id_paginas_temp").html(pag_html);
}
function consulta_item_ged(tipoLink, codigo) {
x_ajax_ged_consulta_item(tipoLink, codigo, mostra_consulta_item_ged);
}
function mostra_consulta_item_ged(retorno) {
if(retorno.hasOwnProperty('url') && retorno.url.trim())
window.open(retorno.url, '_blank');
else
x_ajax_ged_consulta_item_login(retorno.TipoLink, retorno.Codigo, mostra_consulta_item_ged_login);
}
function mostra_consulta_item_ged_login(retorno) {
acesso_acessibilidade(retorno.url);
}
function carrega_dados_dublincore(cod_acervo_temp_js)
{
document.getElementById("div_detalhes_dublincore").innerHTML = "<br><br><br><br><br><br><br><br><br><br><br><br><font class='link_aguarde'>Aguarde...</font>";
document.getElementById("div_detalhes_dublincore").style.display="";
if(cod_acervo_temp_js=="")
cod_acervo_temp_js = document.pesquisas.codigo_acervo_tela.value;
document.pesquisas.codigo_acervo_tela.value = cod_acervo_temp_js;
x_ajax_dados_dublin_core(cod_acervo_temp_js,mostra_dados_dublin_core);
}
function print_dados(dados)
{
var mywindow = window.open('', 'PRINT', 'height=400,width=600');
var conteudo = document.getElementsByClassName(dados)[0].innerHTML;
conteudo = conteudo.replace("pmu_dados_img museu","pmu_dados_img");
mywindow.document.write('<html><head><title>' + document.title + '</title>');
mywindow.document.write('<link rel="stylesheet" href="../css/pesquisa_geral.css" type="text/css"/>');
mywindow.document.write('<link rel="stylesheet" type="text/css" href="../css/css_original_consulta.css"/>');
mywindow.document.write('<link rel="stylesheet" type="text/css" href="../css/login_usu_estilo.css"/>');
mywindow.document.write('<link rel="stylesheet" type="text/css" href="../css/ajax-tooltip.css" media="screen"/>');
mywindow.document.write('<link rel="stylesheet" type="text/css" href="../css/ajax-tooltip-demo.css" media="screen"/>');
mywindow.document.write('<link rel="stylesheet" type="text/css" href="../css/styles.css"/>');
mywindow.document.write('<link rel="stylesheet" type="text/css" href="../css/jquery-ui-1.8.13.custom.css"/>');
mywindow.document.write('<link rel="stylesheet" type="text/css" href="../css/ui.dropdownchecklist.themeroller.css"/>');
mywindow.document.write('<link href="../biblioteca_s/meu_pergamum/css/font-awesome.css" rel="stylesheet" type="text/css"/>');
mywindow.document.write('<link href="../SpryAssets/SpryTabbedPanels.css" rel="stylesheet" type="text/css" />');
mywindow.document.write('<link rel="stylesheet" type="text/css" href="css/example.css" />');
mywindow.document.write('<link href="../css/tesauro.css" rel="stylesheet" type="text/css" />');
mywindow.document.write('<link href="../css/ebsco.css" rel="stylesheet" type="text/css" />');
mywindow.document.write('<link href="../css/popbox.css" rel="stylesheet" type="text/css" />');
mywindow.document.write('</head><body >');
mywindow.document.write('<span class="logo_empresa"><img src="../img/logo_empresa.jpg" border="0"></span><strong><span style="font-size:2em;">' + document.title + '</span></strong></br><table class="layer_meio">');
mywindow.document.write(conteudo);
mywindow.document.write('</table></body></html>');
mywindow.document.close();
mywindow.focus();
setTimeout(function(){mywindow.print();},1000);
}
function mostra_ajuda(processando)
{
if(processando=="A")
{
document.getElementById("div_ajuda_novo").innerHTML = "<br><br><br><br><br><br><br><br><br><br><br><br><font class='link_aguarde'>Aguarde...</font>";
document.getElementById("div_ajuda_novo").style.display="";
}
x_ajax_mostra_ajuda(mostra_ajuda_dado);
}
function mostra_abnt_pesquisa(novo_dado)
{
if(novo_dado[1]=="")
novo_dado[1]="<div class='pmu_dados1'><b><center><br>Nenhum registro encontrado</center></b></div>";
document.getElementById("id_abnt").innerHTML = novo_dado[1];
document.getElementById("abnt_total_pesquisa").innerHTML = "\""+novo_dado[0]+"\"";
}
function ver_historico()
{
document.getElementById("carregar").style.display="block";
x_ajax_mostra_login(2,mostra_conteudo_filtro);
}
function valida_login_armazem_reserva(sequencia){
if(document.getElementById("login_acesso_novo"+sequencia) != null)
login = document.getElementById("login_acesso_novo"+sequencia).value.trim();
else
login = "";
if(document.getElementById("senha_acesso_novo"+sequencia) != null)
senha = document.getElementById("senha_acesso_novo"+sequencia).value.replace("+","%2B").trim();
else
senha = "";
if(login != "" && senha != ""){
return true;
}
if(login != ""){
return true;
}
return false;
}
function verificaPessoaComentario(){
if(''!=""){
document.getElementById("id_matriculaComentario").value='';
document.getElementById("id_matriculaComentario").focus();
buscaNomeComentario();
}
}
function buscaNomeComentario(){
var codMatriculaComentario="";
codMatriculaComentario = document.getElementById("id_matriculaComentario").value;
var categoria_usu = "";
if(codMatriculaComentario.trim()!=""){
document.getElementById("button_c").value="Aguarde...";
document.getElementById("button_c").readonly=true;
document.getElementById("button_c").disabled=true;
x_ajax_busca_pessoaComentario(codMatriculaComentario,categoria_usu,mostraPessoaMatricula);
}
}
function mostraPessoaMatricula(resultado){
if(typeof resultado == "object"){
if(resultado[1] != "")
document.getElementById("id_nomeComentario").value = resultado[1].trim();
document.getElementById("id_senhaComentario").focus();
}
else{
alert(resultado);
document.getElementById("id_nomeComentario").value = "";
document.getElementById("id_matriculaComentario").value = "";
document.getElementById("id_matriculaComentario").focus();
}
document.getElementById("button_c").value = "Enviar";
document.getElementById("button_c").readonly = false;
document.getElementById("button_c").disabled = false;
if(document.getElementById("siimage5") != null){
document.getElementById("siimage5").src = "../captcha/securimage_show.php?sid=" + Math.random();
document.getElementById("ct_captcha5").value = "";
}
}
function gravaComentario(flag){
var codMatricula = document.getElementById("id_matriculaComentario").value;
var comentario = document.getElementById("id_comentario0").value;
var codAcervo = document.pesquisas.codigo_acervo_tela.value;
var seguranca_letras = "";
document.getElementById("button_c").value = "Aguarde...";
document.getElementById("button_c").readonly = true;
document.getElementById("button_c").disabled = true;
if(comentario.trim() != ""){
var categoria_usu = "";
x_ajax_GravaComentario(codAcervo,codMatricula,comentario,seguranca_letras,categoria_usu,mostra_gravaComentario);
}
else{
alert("Comentário inválido!");
document.getElementById("button_c").value="Enviar";
document.getElementById("button_c").readonly=false;
document.getElementById("button_c").disabled=false;
document.getElementById("id_comentario0").focus();
}
}
function mostra_gravaComentario(resultado){
if(resultado!="ok"){
document.getElementById("id_comentario0").focus();
alert(resultado);
if(document.getElementById("siimage5")!=null){
document.getElementById("siimage5").src = "../captcha/securimage_show.php?sid=" + Math.random();
document.getElementById("ct_captcha5").value="";
}
}
else{
alert("Comentário gravado com sucesso!");
document.getElementById("id_comentario0").value="";
document.getElementById("id_matriculaComentario").value="";
document.getElementById("id_nomeComentario").value="";
if(document.getElementById("id_senhaComentario")!=null)
document.getElementById("id_senhaComentario").value="";
if(document.getElementById("siimage5")!=null){
document.getElementById("siimage5").src = "../captcha/securimage_show.php?sid=" + Math.random();
document.getElementById("ct_captcha5").value="";
}
document.getElementById("id_comentario0").focus();
}
document.getElementById("button_c").value="Enviar";
document.getElementById("button_c").readonly=false;
document.getElementById("button_c").disabled=false;
}
function validaLoginComentario(tipo_redirect){
var comentarios_obras = document.getElementById("id_comentario0").value;
var login = document.getElementById("id_matriculaComentario").value;
var senha = document.getElementById("id_senhaComentario").value.replace("+","%2B");
var seguranca_letras = "";
if (comentarios_obras.trim() == ""){
alert("Por favor preencher o campo comentários!");
document.getElementById("id_comentario0").focus();
return;
}
if (login == ""){
alert("Por favor preencher o campo "+document.getElementById("id_denominacao_login_co").innerHTML+"!");
document.getElementById("id_matriculaComentario").focus();
return;
}
var categoria_usu = "";
if (senha == ""){
alert("Digite sua senha!")
document.getElementById("id_senhaComentario").focus();
return;
}
cod_acervo_ace = "";
if(tipo_redirect==4){
cod_acervo_ace = document.dados.cod_acervo_acessibilidade.value;
}
document.getElementById("button_c").value="Aguarde...";
document.getElementById("button_c").readonly=true;
document.getElementById("button_c").disabled=true;
x_ajax_valida_acesso(login,senha.replace("+","%2B"),tipo_redirect,cod_acervo_ace,seguranca_letras,categoria_usu,mostra_validacao);
}
function validaCampoObrigatorio(empresa, tipo_redirect){
if("N"=="S")
{
var campoObrigatorio = document.getElementById("id_empresa").value;
if(campoObrigatorio.trim() == -1){
alert("Escolha uma opção obrigatória!");
document.getElementById("campoObrigatirio").focus();
return;
}
else{
document.getElementById("valorTipo").value = document.getElementById("id_empresa").value;
valida_login(tipo_redirect);
}
}
else
valida_login(tipo_redirect);
}
function valida_login_novo(tipo_redirect, cod_empresa){
var campoObrigatorio;
var seguranca_letras = "";
var dominio = "";
var ifsp_categ_temp = "";
var categoria_usu = "";
if(document.getElementById("dominio") != null)
dominio = document.getElementById("dominio").options[document.getElementById("dominio").selectedIndex].value;
if("N"=="S")
{
campoObrigatorio = document.getElementById("id_empresa_login").value;
if(campoObrigatorio.trim() == -1)
{
alert("Escolha uma opção obrigatória!");
document.getElementById("id_empresa_login").focus();
return;
}
}
if(ifsp_categ_temp=="servidores")
campoObrigatorio = "";
if(cod_empresa == 162)
campoObrigatorio = dominio;
var login = document.getElementById("login_acesso").value;
var senha = document.getElementById("senha_acesso").value.replace("+","%2B");
var categoria_usu = "";
if (login.trim() == ""){
alert("Você deve preencher o campo Login ANAC!");
document.getElementById("login_acesso").focus();
return;
}
if (senha.trim() == ""){
alert("Digite sua senha!!")
document.getElementById("senha_acesso").focus();
return;
}
document.getElementById("logar").disabled=true;
document.getElementById("logar").value="Aguarde...";
cod_acervo_ace = "";
if(tipo_redirect==4)
{
cod_acervo_ace = document.dados.cod_acervo_acessibilidade.value;
}
else
document.getElementById("carregar").style.display="block";
x_ajax_valida_acesso_novo(document.getElementById("login_acesso").value,document.getElementById("senha_acesso").value.replace("+","%2B"),tipo_redirect,cod_acervo_ace,campoObrigatorio,seguranca_letras,categoria_usu, mostra_validacao);
}
function valida_login(tipo_redirect){
var login = document.getElementById("login_acesso").value;
var senha = document.getElementById("senha_acesso").value.replace("+","%2B");
var seguranca_letras = "";
if (login == ""){
alert("Por favor preencher o campo "+document.getElementById("id_denominacao_login_restrito").innerHTML+"!");
document.getElementById("login_acesso").focus();
return;
}
if (senha == ""){
alert("Digite sua senha!!")
document.getElementById("senha_acesso").focus();
return;
}
var categoria_usu = "";
document.getElementById("logar").disabled=true;
document.getElementById("logar").value="Aguarde...";
cod_acervo_ace = "";
if(tipo_redirect==4){
cod_acervo_ace = document.dados.cod_acervo_acessibilidade.value;
} else if(tipo_redirect==6) {
}
else
document.getElementById("carregar").style.display="block";
x_ajax_valida_acesso(document.getElementById("login_acesso").value,document.getElementById("senha_acesso").value.replace("+","%2B"),tipo_redirect,cod_acervo_ace,seguranca_letras,categoria_usu,mostra_validacao);
}
function valida_permissao_ebook(cod_acervo, link_ebook){
x_ajax_valida_permissao_ebook(cod_acervo, link_ebook ,mostra_permissao_ebook);
}
function mostra_permissao_ebook(result){
var link = result[1];
if(result[0] != "erro"){
var acesso_url = ("https://pergamum.anac.gov.br/biblioteca_s/mostra_doc.php?arquivo="+link);
window.open(acesso_url,'LoginTelaAcessibilidade','width=470,height=300,top=110px,left=220px,scrollbars=yes,resizable=yes,toolbar=no,location=no,menubar=no');
return;
}
else
alert(result[1]);
}
function email_resgate_senha(){
var login = document.pesquisas.login_acesso.value;
if (login.trim() == ""){
alert("Você deve preencher o campo Login ANAC!");
document.getElementById("login_acesso").focus();
return;
}
else{
document.getElementById('login_pergamum_com_senha').style.display="none";
document.getElementById('login_pergamum_sem_senha').style.display="block";
x_ajax_email_resgate_senha(login,"principal",confirmar_email_resgate_senha);
}
}
function login_senha(redireciona){
var redir = false;
var redirSAML = false;
redir = redireciona_perseus();
redirSAML = redireciona_saml();
if(!redir && !redirSAML){
if(redireciona == 1)
x_ajax_login_senha(atualiza_pagina_login);
else
x_ajax_login_senha(atualiza_pagina_principal);
}
}
function atualiza_pagina_login(result){
if(result == "")
window.location="login_usu.php";
}
function atualiza_pagina_principal(result){
if(result == "")
window.open('../biblioteca_s/php/login_usu.php?flag=index.php','ControlWindow','width='+(screen.width-8)+',height='+(screen.height-75)+',top=0px,left=0px,status=yes,scrollbars=yes,resizable=yes');
}
function abre_autoatendimento(url_pergamumweb,cod_empresa,cod_bib_autoatendimento,idioma_autoatendimento,autenticacao_autoatendimento){
window.open(url_pergamumweb+'home_geral/login_auto_atendimento.jsp?empresa='+cod_empresa+'&biblioteca='+cod_bib_autoatendimento+'&idioma='+idioma_autoatendimento+'&permissao_teclado_numerico=false&tipoAutenticacao='+autenticacao_autoatendimento,'ControlWindow','width='+(screen.width-8)+',height='+(screen.height-75)+',top=0px,left=0px,status=yes,scrollbars=yes,resizable=yes');
}
function confirmar_email_resgate_senha(result){
document.getElementById("texto_resgate_senha").innerHTML = result;
}
function pararPesquisaComentario()
{
sajax_cancel();
document.getElementById("id_carregarComentario").style.display="none";
}
function buscaComentario()
{
var codAcervo = document.pesquisas.codigo_acervo_tela.value;
document.getElementById("div_detalhes_comentarios").innerHTML = "<center><font class='link_aguarde'>Aguarde...</font></center>";
document.getElementById("div_detalhes_comentarios").style.display="";
x_ajax_buscaComentario(codAcervo,mostraBuscaComentario);
}
function mostraBuscaComentario(resultado)
{
if(resultado=="")
{
alert("Nenhum comentário para visualização!");
document.getElementById("div_detalhes_comentarios").innerHTML="";
return;
}
document.getElementById("div_detalhes_comentarios").innerHTML=resultado;
}
function fecharComentario(){
document.getElementById("div_detalhes_comentarios").innerHTML="";
}
function acessoUsuario(){
var redir = false;
var redirSAML = false;
redir = redireciona_perseus();
redirSAML = redireciona_saml();
if(!redir && !redirSAML)
window.open('https://pergamum.anac.gov.br/biblioteca_s/php/login_usu.php?flag=index.php','ControlWindow','width='+(screen.width-8)+',height='+(screen.height-75)+',top=0px,left=0px,status=yes,scrollbars=yes,resizable=yes');
}
function mostra_validacao(novo_dado){
if(novo_dado[0]=="gedweb")
{
novo_email_autenticado = novo_dado[1];
antigo_email_autenticado = novo_dado[2];
novo_dado = novo_dado[3]
}
if(novo_dado[0]!="erro"){
if(novo_dado!="5" && novo_dado!="Matrícula Inválida!" && novo_dado!="Senha inválida!" && novo_dado!="Invalid credentials" && novo_dado!="Strong(er) authentication required" && novo_dado!="Código de segurança inválido!"){
document.getElementById("logar").disabled=false;
document.getElementById("logar").value="Login";
if(document.getElementById("carregar") != null)
document.getElementById("carregar").style.display="none";
}
if(novo_dado=="1"){
window.open('https://pergamum.anac.gov.br/biblioteca_s/php/login_usu.php?flag=index.php','ControlWindow','width=795,height=520,top=2px,left=2px,status=yes,scrollbars=yes,resizable=yes');
return;
}
if(novo_dado=="2"){
document.location.href="../biblioteca/historico_pesquisas.php";
return;
}
if(novo_dado=="3"){
document.pesquisas.submit();
return;
}
if(novo_dado=="4"){
document.location.href="mostra_doc.php?arquivo="+document.dados.acesso.value;
return;
}
if(novo_dado=="5"){
gravaComentario('N');
}
if(novo_dado=="6"){
document.dados.acesso.value = document.dados.acesso.value.replace(antigo_email_autenticado, novo_email_autenticado);
window.open(document.dados.acesso.value);
window.close();
return;
}
if(novo_dado!="1" && novo_dado!="2" && novo_dado!="3" && novo_dado!="4" && novo_dado!="5" && novo_dado!="0" && novo_dado!="6"){
alert(novo_dado);
if(document.getElementById("siimage")!=null){
document.getElementById("siimage").src = "../captcha/securimage_show.php?sid=" + Math.random();
document.getElementById("ct_captcha").value="";
}
if(document.getElementById("siimage5")!=null){
document.getElementById("siimage5").src = "../captcha/securimage_show.php?sid=" + Math.random();
document.getElementById("ct_captcha5").value="";
}
if(document.getElementById("siimage8")!=null){
document.getElementById("siimage8").src = "../captcha/securimage_show.php?sid=" + Math.random();
document.getElementById("ct_captcha8").value="";
}
if(document.getElementById("button_c") != null){
document.getElementById("button_c").value="Enviar";
document.getElementById("button_c").readonly=false;
document.getElementById("button_c").disabled=false;
}
if(document.getElementById("logar") != null){
document.getElementById("logar").disabled=false;
document.getElementById("logar").value="Login";
}
if(document.getElementById("carregar") != null)
document.getElementById("carregar").style.display="none";
return;
}
}else{
alert(novo_dado[1]);
if(document.getElementById("button_c") != null)
{
document.getElementById("button_c").value = "Enviar";
document.getElementById("button_c").readonly = false;
document.getElementById("button_c").disabled = false;
}
if(document.getElementById("logar") != null)
{
document.getElementById("logar").disabled=false;
document.getElementById("logar").value="Login";
}
if(document.getElementById("carregar") != null)
document.getElementById("carregar").style.display="none";
}
}
function mostra_tela_req_material(novo_dado){
if(document.getElementById("envia_reserva") != null){
document.getElementById("envia_reserva").setAttribute("value","Confirmar");
document.getElementById("envia_reserva").setAttribute("disabled","true");
}
if(novo_dado[1]!=""){
alert(novo_dado[1]);
document.getElementById("div_req_material").innerHTML = novo_dado[0];
}
else
document.getElementById("div_req_material").innerHTML = novo_dado[0];
}
function validacaoEmail(email) {
var re = /^(([^<>()[\]\\.,;:\s@\"]+(\.[^<>()[\]\\.,;:\s@\"]+)*)|(\".+\"))@((\[[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\])|(([a-zA-Z\-0-9]+\.)+[a-zA-Z]{2,}))$/;
return (re.test(email));
}
function mostra_frame(mostra_referencia,mostra_marc,mostra_tipo_v_tela){
vet_tipo = document.getElementsByName("tipo_novo");
tipo_v = "";
if(mostra_referencia=="F" && mostra_marc=="F"){
if(vet_tipo[0].checked==true)
tipo_v = vet_tipo[0].value;
}
else{
if(mostra_referencia=="V"){
if(vet_tipo[0].checked==true)
tipo_v = vet_tipo[0].value;
if(vet_tipo[1].checked==true)
tipo_v = vet_tipo[1].value;
if(mostra_marc=="V"){
if(vet_tipo[2].checked==true)
tipo_v = vet_tipo[2].value;
}
}
if(mostra_marc=="V"){
if(vet_tipo[0].checked==true)
tipo_v = vet_tipo[0].value;
if(vet_tipo[1].checked==true)
tipo_v = vet_tipo[1].value;
if(mostra_referencia=="V"){
if(vet_tipo[2].checked==true)
tipo_v = vet_tipo[2].value;
}
}
}
vet_mostra_tipo = document.getElementsByName("mostra_tipo");
mostra_tipo_v = "";
if(vet_mostra_tipo[0].checked==true)
mostra_tipo_v = vet_mostra_tipo[0].value;
if(vet_mostra_tipo[1].checked==true)
mostra_tipo_v = vet_mostra_tipo[1].value;
if(mostra_tipo_v_tela != "")
mostra_tipo_v = mostra_tipo_v_tela;
if(tipo_v=="M" && mostra_tipo_v=="T"){
document.pesquisas.manda.disabled=true;
document.pesquisas.manda.value="Aguarde";
//alert('Marc tela');
document.getElementById("div_marc_janela2").innerHTML = "<br><br><br><br><br><br><br><br><br><br><br><br><font class='link_aguarde'>Aguarde...</font>";
document.getElementById("div_marc_janela2").style.display="";
MM_showHideLayers('marc_tela2','','show');
x_ajax_marc('','','',mostra_frame_result);
}
if(tipo_v=="M" && mostra_tipo_v=="E"){
var seguranca_letras = "";
if(document.getElementById("e_mail_info_novo").value==""){
alert("O campo para deve ser preenchido!");
document.getElementById("e_mail_info_novo").focus();
}
else if(document.getElementById("e_mail_assunto_novo").value==""){
alert("O campo assunto deve ser preenchido!");
document.getElementById("e_mail_assunto_novo").focus();
}
else if(document.getElementById("e_mail_msg_novo").value==""){
alert("O campo mensagem deve ser preenchido!");
document.getElementById("e_mail_msg_novo").focus();
}
else{
document.pesquisas.manda2_novo.disabled=true;
document.pesquisas.manda2_novo.value="Aguarde";
x_ajax_marc(document.pesquisas.e_mail_info_novo.value,document.pesquisas.e_mail_assunto_novo.value,document.pesquisas.e_mail_msg_novo.value,seguranca_letras,mostra_frame_result);
}
}
if(tipo_v=="D" && mostra_tipo_v=="T"){
document.pesquisas.manda.disabled=true;
document.pesquisas.manda.value="Aguarde";
//alert('dados acervo tela');
document.getElementById("div_dados_acervo_janela2").innerHTML = "<br><br><br><br><br><br><br><br><br><br><br><br><font class='link_aguarde'>Aguarde...</font>";
document.getElementById("div_dados_acervo_janela2").style.display="";
MM_showHideLayers('dados_acervo_tela2','','show');
x_ajax_dados_acervo_janela('','','',mostra_janela_dados_acervo);
}
if(tipo_v=="D" && mostra_tipo_v=="E"){
var seguranca_letras = "";
if(document.getElementById("e_mail_info_novo").value==""){
alert("O campo para deve ser preenchido!");
document.getElementById("e_mail_info_novo").focus();
}
else if(document.getElementById("e_mail_assunto_novo").value==""){
alert("O campo assunto deve ser preenchido!");
document.getElementById("e_mail_assunto_novo").focus();
}
else if(document.getElementById("e_mail_msg_novo").value==""){
alert("O campo mensagem deve ser preenchido!");
document.getElementById("e_mail_msg_novo").focus();
}
else{
document.pesquisas.manda2_novo.disabled=true;
document.pesquisas.manda2_novo.value="Aguarde";
x_ajax_dados_acervo_janela(document.pesquisas.e_mail_info_novo.value,document.pesquisas.e_mail_assunto_novo.value,document.pesquisas.e_mail_msg_novo.value,seguranca_letras,mostra_janela_dados_acervo);
}
}
if(tipo_v=="R" && mostra_tipo_v=="T"){
document.pesquisas.manda.disabled=true;
document.pesquisas.manda.value="Aguarde";
//alert('referencia tela');
document.getElementById("div_referencia_janela2").innerHTML = "<br><br><br><br><br><br><br><br><br><br><br><br><font class='link_aguarde'>Aguarde...</font>";
document.getElementById("div_referencia_janela2").style.display="";
MM_showHideLayers('referencia_tela2','','show');
x_ajax_referencia_janela('','','',mostra_janela_referencia);
}
if(tipo_v=="R" && mostra_tipo_v=="E"){
var seguranca_letras = "";
if(document.getElementById("e_mail_info_novo").value==""){
alert("O campo para deve ser preenchido!");
document.getElementById("e_mail_info_novo").focus();
}
else if(document.getElementById("e_mail_assunto_novo").value==""){
alert("O campo assunto deve ser preenchido!");
document.getElementById("e_mail_assunto_novo").focus();
}
else if(document.getElementById("e_mail_msg_novo").value==""){
alert("O campo mensagem deve ser preenchido!");
document.getElementById("e_mail_msg_novo").focus();
}
else{
document.pesquisas.manda2_novo.disabled=true;
document.pesquisas.manda2_novo.value="Aguarde";
x_ajax_referencia_janela(document.pesquisas.e_mail_info_novo.value,document.pesquisas.e_mail_assunto_novo.value,document.pesquisas.e_mail_msg_novo.value,seguranca_letras,mostra_janela_referencia);
}
}
}
function copymetasearch(flag)
{
document.getElementById(flag).focus();
document.getElementById(flag).select();
textRange = document.getElementById(flag).createTextRange();
textRange.execCommand("RemoveFormat");
textRange.execCommand("Copy");
}
function trocaLabel()
{
mostra_tipo = document.getElementsByName("mostra_tipo");
mostra_tipo[0].checked=true;
}
function mostra_janela_referencia(novo_dado)
{
trocaLabel();
document.pesquisas.manda2_novo.value="Enviar";
document.pesquisas.manda2_novo.disabled=false;
if(novo_dado[1] != "")
alert(novo_dado[1]);
if(novo_dado[0] == "" && novo_dado[1] == "")
alert("Email enviado com sucesso!");
if(document.getElementById("siimage7")!=null)
{
document.getElementById("siimage7").src = "../captcha/securimage_show.php?sid=" + Math.random();
document.getElementById("ct_captcha7").value="";
}
if(novo_dado[0] != "")
document.getElementById("div_referencia_janela2").innerHTML = novo_dado[0];
document.pesquisas.manda.value="Mostrar";
document.pesquisas.manda.disabled=false;
}
function mostra_frame_result(novo_dado)
{
trocaLabel();
document.pesquisas.manda2_novo.value="Enviar";
document.pesquisas.manda2_novo.disabled=false;
if(novo_dado[1] != "")
alert(novo_dado[1]);
if(novo_dado[0] == "" && novo_dado[1] == "")
alert("Email enviado com sucesso!");
if(document.getElementById("siimage7")!=null)
{
document.getElementById("siimage7").src = "../captcha/securimage_show.php?sid=" + Math.random();
document.getElementById("ct_captcha7").value="";
}
if(novo_dado[0] != "")
document.getElementById("div_marc_janela2").innerHTML = novo_dado[0];
document.pesquisas.manda.value="Mostrar";
document.pesquisas.manda.disabled=false;
}
function mostra_janela_dados_acervo(novo_dado)
{
trocaLabel();
document.pesquisas.manda2_novo.value="Enviar";
document.pesquisas.manda2_novo.disabled=false;
if(novo_dado[1] != "")
alert(novo_dado[1]);
if(novo_dado[0] == "" && novo_dado[1] == "")
alert("Email enviado com sucesso!");
if(document.getElementById("siimage7")!=null)
{
document.getElementById("siimage7").src = "../captcha/securimage_show.php?sid=" + Math.random();
document.getElementById("ct_captcha7").value="";
}
if(novo_dado[0] != "")
document.getElementById("div_dados_acervo_janela2").innerHTML = novo_dado[0];
document.pesquisas.manda.value="Mostrar";
document.pesquisas.manda.disabled=false;
}
function gravaCesta(codigoPessoa){
var obrasMarcadas = '';
for(var i = 1; i < document.getElementById("totalObras").value ; i++){
if(document.getElementById("selec"+i).checked)
obrasMarcadas = obrasMarcadas + document.getElementById("selec"+i).value + ',';
}
if(obrasMarcadas == ''){
alert("Selecione ao menos uma obra para inclusão na cesta permanente!");
trocaLabel();
}else{
if(codigoPessoa == null){
var usaPerseus = usa_perseus();
var usaSAML = usa_saml();
if(!usaPerseus && !usaSAML){
alert('Usuário não está logado \r\nPor gentileza, realize a autenticação do seu login para que a operação seja realizada');
document.getElementById("carregar").style.display="block";
x_ajax_validaLogin(3, mostraResultadoGravaCesta);
}else{
alert("Usuário não está logado");
}
}else{
if(confirm("Deseja realmente adicionar esse(s) acervo(s) à sua cesta permanente?"))
x_ajax_grava_cesta_permanente(obrasMarcadas, codigoPessoa, resultadoGravarCestaPemanente);
else{
if(document.getElementById("logar")!=null){
document.getElementById("logar").disabled=false;
document.getElementById("logar").value="Login";
}
if(document.getElementById("siimage6")!=null){
document.getElementById("siimage6").src = "../captcha/securimage_show.php?sid=" + Math.random();
document.getElementById("ct_captcha6").value="";
}
}
}
}
}
function mudaTipoCesta(tipo, codigoPessoa){
if(tipo == 'F'){
document.getElementById("cesta_tela_conteudo").style.display = "none";
document.getElementById("acervo_fechado_conteudo").style.display = "block";
}
if(tipo == 'T'){
document.getElementById("cesta_tela_conteudo").style.display = "block";
if(document.getElementById("acervo_fechado_conteudo") != null)
document.getElementById("acervo_fechado_conteudo").style.display = "none";
}
if(tipo == 'P'){
var obrasMarcadas = '';
document.getElementById("cesta_tela_conteudo").style.display = "none";
if(document.getElementById("acervo_fechado_conteudo") != null)
document.getElementById("acervo_fechado_conteudo").style.display = "none";
for(var i = 1; i < document.getElementById("totalObras").value ; i++){
if(document.getElementById("selec"+i).checked)
obrasMarcadas = obrasMarcadas + document.getElementById("selec"+i).value + ',';
}
if(obrasMarcadas == ''){
alert("Selecione ao menos uma obra para inclusão na cesta permanente!");
trocaLabel();
}else{
if(codigoPessoa == null){
var usaPerseus = usa_perseus();
var usaSAML = usa_saml();
if(!usaPerseus && !usaSAML){
alert('Usuário não está logado \r\nPor gentileza, realize a autenticação do seu login para que a operação seja realizada');
document.getElementById("carregar").style.display="block";
x_ajax_validaLogin(3, mostraResultadoGravaCesta);
}else{
alert("Usuário não está logado");
}
}else{
if(confirm("Deseja realmente adicionar esse(s) acervo(s) à sua cesta permanente?"))
x_ajax_grava_cesta_permanente(obrasMarcadas, codigoPessoa, resultadoGravarCestaPemanente);
else{
if(document.getElementById("logar")!=null){
document.getElementById("logar").disabled=false;
document.getElementById("logar").value="Login";
}
if(document.getElementById("siimage6")!=null){
document.getElementById("siimage6").src = "../captcha/securimage_show.php?sid=" + Math.random();
document.getElementById("ct_captcha6").value="";
}
}
}
}
}
}
function mostraResultadoGravaCesta(resultado)
{
document.location.href="#top";
document.getElementById("div_cadastro").innerHTML = resultado;
MM_showHideLayers('div_cadastro','','show');
document.getElementById("carregar").style.display="none";
}
function resultadoGravarCestaPemanente(resultado)
{
if(resultado == 'ok')
{
alert('Operação realizada com sucesso! \r\n Para consultar sua cesta permanente acesse o Meu Pergamum');
MM_showHideLayers('div_cadastro','','hide');
}
else
alert(resultado);
}
function valida_login_cesta(tipo_redirect){
var login = document.getElementById("login_acesso").value;
var senha = document.getElementById("senha_acesso").value.replace("+","%2B");
var seguranca_letras = "";
var categoria_usu = "";
if (login == ""){
alert("Por favor preencher o campo "+document.getElementById("id_denominacao_login_cesta").innerHTML+"!");
document.getElementById("login_acesso").focus();
return;
}
if (senha == ""){
alert("Digite sua senha!!");
document.getElementById("senha_acesso").focus();
return;
}
document.getElementById("logar").disabled=true;
document.getElementById("logar").value="Aguarde...";
cod_acervo_ace = "";
x_ajax_valida_acesso_cesta(document.getElementById("login_acesso").value,document.getElementById("senha_acesso").value.replace("+","%2B"),tipo_redirect,cod_acervo_ace,seguranca_letras,categoria_usu,mostra_validacao_cesta);
}
function mostra_validacao_cesta(novo_dado){
var tiporedirect = novo_dado.substring(0,1);
var cod_pessoa = novo_dado.substring(1, novo_dado.length);
if(tiporedirect!="1" && tiporedirect!="2" && tiporedirect!="3" && tiporedirect!="4" && tiporedirect!="5"){
alert(novo_dado);
document.getElementById("logar").disabled=false;
document.getElementById("logar").value="Login";
if(document.getElementById("siimage6")!=null){
document.getElementById("siimage6").src = "../captcha/securimage_show.php?sid=" + Math.random();
document.getElementById("ct_captcha6").value="";
}
return;
}
else if(tiporedirect=="3"){
gravaCesta(cod_pessoa);
return;
}
else if(tiporedirect!="5" && novo_dado!="Senha inválida!"){
document.getElementById("logar").disabled=false;
document.getElementById("logar").value="Login";
}
}
function oculta_mkt()
{
if(document.getElementById("div_filtro_mkt") != null)
{
if(document.getElementById('div_filtro_mkt2').style.display=='')
{
document.getElementById('div_filtro_mkt2').style.display="none";
document.getElementById('div_filtro_mkt').style.display="none";
document.getElementById('mkt_mostrar').style.display="";
}
}
}
function mostra_banner_mkt(dados_curso)
{
document.getElementById("div_filtro_mkt").innerHTML = "<a href='"+dados_curso[2]+"' target='_blank' title='"+dados_curso[3]+"'><img src='../img/banners/"+dados_curso[4]+"' border='0'></a>";
if(document.getElementById("div_filtro_mkt") != null)
setTimeout("oculta_mkt();",20000);
}
function mkt_banner_controle()
{
if(document.getElementById('div_filtro_mkt2').style.display=='')
{
document.getElementById('div_filtro_mkt2').style.display="none";
document.getElementById('div_filtro_mkt').style.display="none";
document.getElementById('mkt_mostrar').style.display="";
}
else
{
document.getElementById('div_filtro_mkt2').style.display="";
document.getElementById('div_filtro_mkt').style.display="";
document.getElementById('mkt_mostrar').style.display="none";
}
}
function mkt_banner_facebook()
{
MM_showHideLayers('mkt','','show');
document.getElementById('mkt_iframe').innerHTML="<iframe frameborder='0' src='http://pos.pucpr.br/' width='100%' height='100%'></iframe>";
}
function consulta_filtros()
{
if(document.pesquisas.controla_acao.value=="rede_oai_geral")
{
consulta_filtros_oai("G");
return;
}
if(document.pesquisas.controla_acao.value=="rede_oai_local")
{
consulta_filtros_oai("L");
return;
}
if(document.pesquisas.controla_acao.value=="gedweb_target") {
document.getElementById('id_filtros_mobile').style.display="none";
document.getElementById('id_filtros').style.display="block";
return;
}
if(document.getElementById("id_filtros") != null){
if(document.getElementById('id_filtros').style.display=='')
document.getElementById('id_filtros').style.display="none";
else{
document.getElementById("id_filtros").innerHTML = "<div style='cursor:pointer' class='id_filtros_mobile' title='Fechar' onclick=\"document.getElementById('id_filtros').style.display="none";document.getElementById('id_filtros_mobile').style.display="block";\">«</div>"+
"<pre><div class='refina_label'>Refinar sua busca</div></pre>"+
""+
"<div><span id='div_filtro_pesq_bib' style='display:'><img src='../img/loading.gif'><font class='txt_silver'>Aguarde...</font></span></div>"+
"<div><span id='div_filtro_pesq_obra' style='display:'><img src='../img/loading.gif'><font class='txt_silver'>Aguarde...</font></span></div>"+
"<div><span id='div_filtro_pesq_ano' style='display:'><img src='../img/loading.gif'><font class='txt_silver'>Aguarde...</font></span></div>"+
"<div><span id='div_filtro_pesq_com' style='display:'><img src='../img/loading.gif'><font class='txt_silver'>Aguarde...</font></span></div>"+
"<div><span id='div_filtro_pesq_autor' style='display:'><img src='../img/loading.gif'><font class='txt_silver'>Aguarde...</font></span></div>"+
"<div><span id='div_filtro_pesq_assunto' style='display:'><img src='../img/loading.gif'><font class='txt_silver'>Aguarde...</font></span></div>";
if(document.getElementById("termo_para_pesquisa") != null)
termo_tela = document.getElementById("termo_para_pesquisa").value;
if(document.getElementById("termo_para_pesquisa1") != null)
termo_tela = document.getElementById("termo_para_pesquisa1").value;
if(document.getElementById("div_filtro_mkt") != null)
x_ajax_pesquisa_cursos_mkt(termo_tela,mostra_banner_mkt);
document.getElementById('id_filtros').style.display="";
if(document.getElementById("listabib") != null)
bib_temp = document.getElementById("listabib").value;
else
bib_temp = document.pesquisas.bib_selecionadas.value;
campus_selecionados_valor = document.pesquisas.campus_selecionados.value;
x_ajax_consulta_refinamento(document.pesquisas.id_php_tela_refresh.value,'B','div_filtro_pesq_bib',bib_temp,campus_selecionados_valor,mostra_consulta_refinamento);
x_ajax_consulta_refinamento(document.pesquisas.id_php_tela_refresh.value,'T','div_filtro_pesq_obra',bib_temp,campus_selecionados_valor,mostra_consulta_refinamento);
x_ajax_consulta_refinamento(document.pesquisas.id_php_tela_refresh.value,'Y','div_filtro_pesq_ano',bib_temp,campus_selecionados_valor,mostra_consulta_refinamento);
x_ajax_consulta_refinamento(document.pesquisas.id_php_tela_refresh.value,'X','div_filtro_pesq_com',bib_temp,campus_selecionados_valor,mostra_consulta_refinamento);
document.getElementById('div_filtro_pesq_autor').innerHTML = "<div class='div_config_cx5'><b><a href=\"javascript: busca_refinamento_filtros('A','');\" class='link_cinza15'>Autores</a>";
document.getElementById('div_filtro_pesq_assunto').innerHTML = "<div class='div_config_cx5'><b><a href=\"javascript: busca_refinamento_filtros('S','');\" class='link_cinza15'>Assuntos</a>";
}
}
}
function consulta_filtros_oai(flag){
if(document.getElementById("id_filtros") != null){
if(document.getElementById('id_filtros').style.display=='')
document.getElementById('id_filtros').style.display="none";
else{
document.getElementById("id_filtros").innerHTML = "<div style='cursor:pointer' class='id_filtros_mobile' title='Fechar' onclick=\"document.getElementById('id_filtros').style.display="none";document.getElementById('id_filtros_mobile').style.display="block";\">«</div>"+
"<pre><div class='refina_label'>Refinar sua busca</div></pre>"+
""+
"<div><span id='div_filtro_pesq_bib' style='display:'><img src='../img/loading.gif'><font class='txt_silver'>Aguarde...</font></span></div>"+
"<div><span id='div_filtro_pesq_obra' style='display:'><img src='../img/loading.gif'><font class='txt_silver'>Aguarde...</font></span></div>"+
"<div><span id='div_filtro_pesq_ano' style='display:'><img src='../img/loading.gif'><font class='txt_silver'>Aguarde...</font></span></div>";
if(document.getElementById("termo_para_pesquisa") != null)
termo_tela = document.getElementById("termo_para_pesquisa").value;
if(document.getElementById("termo_para_pesquisa1") != null)
termo_tela = document.getElementById("termo_para_pesquisa1").value;
document.getElementById('id_filtros').style.display="";
if(document.getElementById("listabib") != null)
bib_temp = document.getElementById("listabib").value;
else
bib_temp = document.pesquisas.bib_selecionadas.value;
campus_selecionados_valor = document.pesquisas.campus_selecionados.value;
oai_empresas = document.getElementById("oai_empresas_temp").value;
x_ajax_consulta_refinamento_oai(document.pesquisas.id_php_tela_refresh.value,'B','div_filtro_pesq_bib',bib_temp,campus_selecionados_valor,termo_tela,flag,oai_empresas,mostra_consulta_refinamento);
x_ajax_consulta_refinamento_oai(document.pesquisas.id_php_tela_refresh.value,'T','div_filtro_pesq_obra',bib_temp,campus_selecionados_valor,termo_tela,flag,oai_empresas,mostra_consulta_refinamento);
x_ajax_consulta_refinamento_oai(document.pesquisas.id_php_tela_refresh.value,'Y','div_filtro_pesq_ano',bib_temp,campus_selecionados_valor,termo_tela,flag,oai_empresas,mostra_consulta_refinamento);
}
}
}
function testa_campos(){
var senha = "";
var seguranca_letras = "";
var ifsp_categ_temp = "";
var categoria_usu = "";
var campoObrigatorio = "";
if(document.getElementById("dominio") != null)
dominio = document.getElementById("dominio").options[document.getElementById("dominio").selectedIndex].value;
if("N"=="S")
{
campoObrigatorio = document.getElementById("id_empresa_login").value;
if(campoObrigatorio.trim() == -1)
{
alert("Escolha uma opção obrigatória!");
document.getElementById("id_empresa_login").focus();
return;
}
}
if(ifsp_categ_temp=="servidores")
campoObrigatorio = "";
if(document.pesquisas.codBib.value==""){
alert("Selecione quem irá receber este comentário!");
document.pesquisas.codBib.focus();
return;
}
if(document.pesquisas.informacao.value == ""){
alert("Por favor preencher o campo comentários!");
document.pesquisas.informacao.focus();
return;
}
var login = document.pesquisas.codigo.value;
var categoria_usu = "";
if(document.pesquisas.codigo.value == ""){
alert("Por favor preencher o campo "+document.getElementById("id_denominacao_login_c").innerHTML);
document.pesquisas.codigo.focus();
return;
}
senha = document.getElementById("senha_acesso_cog").value.replace("+","%2B");
if (senha == ""){
alert("Digite sua senha!")
document.getElementById("senha_acesso_cog").focus();
return;
}
informacao_temp = document.getElementById("informacao").value;
codBib_temp = document.getElementById("codBib").value;
codigo_pessoa_temp = document.getElementById("codigo").value;
nome_temp = document.getElementById("nome2").value;
fone_temp = document.getElementById("fone2").value;
e_mail_temp = document.getElementById("e_mail2").value;
botton_temp = document.pesquisas.botton.value;
document.pesquisas.gravando.value="Aguarde...";
document.pesquisas.gravando.disabled=true;
x_ajax_gravar(fone_temp,informacao_temp,botton_temp,codBib_temp,codigo_pessoa_temp,nome_temp,e_mail_temp,senha,seguranca_letras,categoria_usu,retorno_gravar);
}
function buscaNome(){
var login = document.getElementById("codigo").value;
if(document.pesquisas.codigo.value == ""){
alert("Por favor preencher o campo "+document.getElementById("id_denominacao_login_c").innerHTML);
document.pesquisas.codigo.focus();
return;
}
document.pesquisas.gravando.value="Aguarde...";
document.pesquisas.gravando.disabled=true;
x_ajax_busca_pessoa(login,seta_dados_pessoa);
}
function mostra_comentarios_dados_geral(novo_dado){
var usaPerseus = usa_perseus();
var usaSAML = usa_saml();
if(usaPerseus || usaSAML){
MM_showHideLayers('comentario_geral','','hide');
alert("Usuário não está logado");
}else{
document.getElementById("div_comentario_geral_novo").innerHTML = novo_dado;
}
}
function buscaNome_novo(){
var login = document.getElementById("codigo_novo").value;
if(login.trim() == ""){
alert("Por favor preencher o campo "+document.getElementById("id_denominacao_login_s").innerHTML);
document.pesquisas.codigo_novo.focus();
return;
}
cod_pessoa_temp = document.getElementById("codigo_novo").value;
document.pesquisas.gravando_novo.value="Aguarde...";
document.pesquisas.gravando_novo.disabled=true;
x_ajax_busca_pessoa(cod_pessoa_temp,seta_dados_pessoa_novo);
}
function mostra_sugestoes_dado(novo_dado){
var usaPerseus = usa_perseus();
var usaSAML = usa_saml();
if(usaPerseus || usaSAML){
MM_showHideLayers('sugestoes','','hide');
alert("Usuário não está logado");
}else{
document.getElementById("div_sugestoes_novo").innerHTML = novo_dado;
}
}
function testa_campos_novo(){
var senha = "";
var seguranca_letras = "";
if(document.pesquisas.titulo.value == ""){
alert("Por favor preencher o campo título");
document.pesquisas.titulo.focus();
return;
}
if(document.pesquisas.editor.value == ""){
alert("Por favor preencher o campo editor");
document.pesquisas.editor.focus();
return;
}
if(document.pesquisas.codBib_novo.value==""){
alert("Selecione quem irá receber esta sugestão");
document.pesquisas.codBib_novo.focus();
return;
}
var login = document.pesquisas.codigo_novo.value;
var categoria_usu = "";
if(document.pesquisas.codigo_novo.value == ""){
alert("Por favor preencher o campo "+document.getElementById("id_denominacao_login_s").innerHTML);
document.pesquisas.codigo_novo.focus();
return;
}
senha = document.getElementById("senha_acesso_sg").value.replace("+","%2B");
if (senha == ""){
alert("Digite sua senha!")
document.getElementById("senha_acesso_sg").focus();
return;
}
autor_temp = document.getElementById("autor").value;
titulo_temp = document.getElementById("titulo").value;
edicao_temp = document.getElementById("edicao").value;
editor_temp = document.getElementById("editor").value;
issn_temp = document.getElementById("issn").value;
periodico_temp = document.getElementById("periodico").value;
informacao_temp = document.getElementById("informacao_novo").value;
codBib_temp = document.getElementById("codBib_novo").value;
codigo_pessoa_temp = document.getElementById("codigo_novo").value;
nome_temp = document.getElementById("nome2_novo").value;
fone_temp = document.getElementById("fone2_novo").value;
e_mail_temp = document.getElementById("e_mail2_novo").value;
botton_temp = document.pesquisas.botton_novo.value;
document.pesquisas.gravando_novo.value="Aguarde...";
document.pesquisas.gravando_novo.disabled=true;
x_ajax_gravar2_novo(autor_temp,titulo_temp,edicao_temp,editor_temp,issn_temp,periodico_temp,fone_temp,informacao_temp,botton_temp,codBib_temp,codigo_pessoa_temp,nome_temp,e_mail_temp,senha,seguranca_letras,categoria_usu,retorno_gravar2_novo);
}
function carrega_dados_reserva(cod_acervo,indicador){
var usaPerseus = usa_perseus();
var usaSAML = usa_saml();
if(!usaPerseus && !usaSAML){
if(indicador=="R")
{
document.getElementById("div_reserva").innerHTML = "<br><br><br><br><br><br><br><br><br><br><br><br><font class='link_aguarde'>Aguarde...</font>";
if(document.getElementById("ifsp_categ") != null)
document.getElementById("ifsp_categ").value = "";
}
if(document.getElementById("dominio") != null)
dominio_reserva = document.getElementById("dominio").value;
else
dominio_reserva = "";
if(document.getElementById("div_reserva") != null)
document.getElementById("div_reserva").style.display="";
if(cod_acervo=="")
cod_acervo = document.pesquisas.codigo_acervo_tela.value;
document.pesquisas.codigo_acervo_tela.value = cod_acervo;
if(document.getElementById("biblioteca_novo") != null)
cod_bib_reserva = document.getElementById("biblioteca_novo").value;
else
cod_bib_reserva = "";
if(document.getElementById("volume_novo") != null)
volume_reserva = document.getElementById("volume_novo").value;
else
volume_reserva = "";
if(document.getElementById("tomos_novo") != null)
tomos_reserva = document.getElementById("tomos_novo").value;
else
tomos_reserva = "";
if(document.getElementById("parte_novo") != null)
parte_reserva = document.getElementById("parte_novo").value;
else
parte_reserva = "";
if(document.getElementById("login_acesso_novo") != null)
login_acesso3_reserva = document.getElementById("login_acesso_novo").value;
else
login_acesso3_reserva = "";
categoria_usuario = "";
if(document.getElementById("senha_acesso_novo") != null)
senha_acesso3_reserva = document.getElementById("senha_acesso_novo").value;
else
senha_acesso3_reserva = "";
if(document.getElementById("mat_adicional_novo") != null)
mat_adicional_reserva = document.getElementById("mat_adicional_novo").value;
else
mat_adicional_reserva = "";
if(document.getElementById("local_reserva_novo") != null)
local_reserva = document.getElementById("local_reserva_novo").value;
else
local_reserva = "";
if(document.getElementById("listabib") != null)
bib_temp = document.getElementById("listabib").value;
else
bib_temp = document.pesquisas.bib_selecionadas.value;
tipoObrigatorio="";
if(document.getElementById("id_empresa") != null)
{
if("N"=="S")
{
tipoObrigatorio = document.getElementById("id_empresa").value;
if(tipoObrigatorio == -1)
{
alert("Selecione a opção obrigatória!");
document.getElementById("id_empresa").focus();
return;
}
}
}
if(indicador == "n")
var acao_reserva = 1;
else
var acao_reserva = 0;
if(indicador == "v"){
if(login_acesso3_reserva.trim()==""){
alert("Por favor preencher o campo "+document.getElementById("id_denominacao_login_r").innerHTML+"!");
document.getElementById("login_acesso_novo").focus();
return;
}
if(senha_acesso3_reserva==""){
alert("Digite sua senha!");
document.getElementById("senha_acesso_novo").focus();
return;
}
var seguranca_letras2 = "";
}
estado_validacao = true;
if(login_acesso3_reserva != "")
estado_validacao = valida_login_armazem_reserva("");
if((estado_validacao) || (indicador == "n") || ((estado_validacao) && (indicador == "n"))){
if(document.getElementById("envia_reserva") != null){
document.getElementById("envia_reserva").setAttribute("value","Aguarde...");
document.getElementById("envia_reserva").setAttribute("disabled","true");
}
if(document.getElementById("pega_dados_reserva") != null)
{
var pega_dados_reserva = document.getElementById("pega_dados_reserva").value;
}
if(dominio_reserva != "")
tipoObrigatorio = dominio_reserva;
x_ajax_dados_reserva(cod_acervo,cod_bib_reserva,volume_reserva,tomos_reserva,parte_reserva,login_acesso3_reserva,senha_acesso3_reserva.replace("+","%2B"),mat_adicional_reserva,indicador,local_reserva,tipoObrigatorio,seguranca_letras2,bib_temp,categoria_usuario,acao_reserva,pega_dados_reserva,mostra_dados_reserva);
}
}else{
if(document.getElementById("login_acesso_novo") == null){
MM_showHideLayers('reserva','','hide');
alert("Usuário não está logado");
}
}
}
function limpaDadosLoginArmazem(){
if(document.getElementById("login_acesso_novo5") != null)
document.getElementById("login_acesso_novo5").value = "";
if(document.getElementById("senha_acesso_novo5") != null)
document.getElementById("senha_acesso_novo5").value = "";
MM_showHideLayers('armazem','','hide');
}
function chamaArmazem(cod_acervo,indicador)
{
if(cod_acervo=="")
{
document.getElementById("div_armazem_novo").innerHTML = "<br><br><br><br><br><br><br><br><br><br><br><br><font class='link_aguarde'>Aguarde...</font>";
document.getElementById("div_armazem_novo").style.display="";
cod_acervo = document.pesquisas.codigo_acervo_tela.value;
}
document.pesquisas.codigo_acervo_tela.value = cod_acervo;
if(document.getElementById("cmbBiblioteca") != null)
cod_bib_armazem = document.getElementById("cmbBiblioteca").value;
else
cod_bib_armazem = "";
if(document.getElementById("volume") != null)
volume_armazem = document.getElementById("volume").value;
else
volume_armazem = "";
if(document.getElementById("tomos") != null)
tomos_armazem = document.getElementById("tomos").value;
else
tomos_armazem = "";
if(document.getElementById("parte") != null)
parte_armazem = document.getElementById("parte").value;
else
parte_armazem = "";
if(document.getElementById("login_acesso_novo5") != null)
login_acesso2_armazem = document.getElementById("login_acesso_novo5").value;
else
login_acesso2_armazem = "";
if(document.getElementById("senha_acesso_novo5") != null)
senha_acesso2_armazem = document.getElementById("senha_acesso_novo5").value;
else
senha_acesso2_armazem = "";
if(indicador == "v")
{
if(login_acesso2_armazem=="")
{
alert("Por favor preencher o campo "+document.getElementById("id_denominacao_login_a").innerHTML+"!");
document.getElementById("login_acesso_novo5").focus();
return;
}
if(senha_acesso2_armazem=="")
{
alert("Digite sua senha!");
document.getElementById("senha_acesso_novo5").focus();
return;
}
var seguranca_letras = "";
}
estado_validacao = true;
if(login_acesso2_armazem != "" && senha_acesso2_armazem != "")
estado_validacao = valida_login_armazem_reserva("5");
if(estado_validacao)
{
if(document.getElementById("envia_armazem_novo") != null)
{
document.getElementById("envia_armazem_novo").readonly=true;
document.getElementById("envia_armazem_novo").disabled=true;
}
x_ajax_mostra_armazem(cod_acervo,cod_bib_armazem,volume_armazem,tomos_armazem,parte_armazem,login_acesso2_armazem,senha_acesso2_armazem.replace("+","%2B"),seguranca_letras,mostra_tela_armazem);
}
}
function chama_req_material_novo(cod_acervo_temp_js,indicador, cod_empresa){
var usaPerseus = usa_perseus();
var usaSAML = usa_saml();
if(!usaPerseus && !usaSAML){
if(cod_acervo_temp_js==""){
document.getElementById("div_req_material").innerHTML = "<br><br><br><br><br><br><br><br><br><br><br><br><font class='link_aguarde'>Aguarde...</font>";
document.getElementById("div_req_material").style.display="";
}
var tipoObrigatorio;
if(cod_acervo_temp_js=="")
cod_acervo_temp_js = document.pesquisas.codigo_acervo_tela.value;
document.pesquisas.codigo_acervo_tela.value = cod_acervo_temp_js;
if(document.getElementById("biblioteca2_novo") != null)
cod_bib_reserva = document.getElementById("biblioteca2_novo").value;
else
cod_bib_reserva = "";
if(document.getElementById("volume2_novo") != null)
volume_reserva = document.getElementById("volume2_novo").value;
else
volume_reserva = "";
if(document.getElementById("tomos2_novo") != null)
tomos_reserva = document.getElementById("tomos2_novo").value;
else
tomos_reserva = "";
if(document.getElementById("parte2_novo") != null)
parte_reserva = document.getElementById("parte2_novo").value;
else
parte_reserva = "";
if(document.getElementById("login_acesso_novo3") != null)
login_acesso3_reserva = document.getElementById("login_acesso_novo3").value;
else
login_acesso3_reserva = "";
categoria_usuario = "";
if(document.getElementById("senha_acesso_novo3") != null)
senha_acesso3_reserva = document.getElementById("senha_acesso_novo3").value;
else
senha_acesso3_reserva = "";
if(document.getElementById("mat_adicional2_novo") != null)
mat_adicional_reserva = document.getElementById("mat_adicional2_novo").value;
else
mat_adicional_reserva = "";
if(document.getElementById("localizacao_recebimento_novo") != null)
cod_local_rec_reserva = document.getElementById("localizacao_recebimento_novo").value;
else
cod_local_rec_reserva = "";
if(document.getElementById("pessoa_autorizada_novo") != null)
pessoa_autorizada_reserva = document.getElementById("pessoa_autorizada_novo").value;
else
pessoa_autorizada_reserva = "";
if(document.getElementById("telefone_novo") != null)
telefone_novo_reserva = document.getElementById("telefone_novo").value;
else
telefone_novo_reserva = "";
if(document.getElementById("email_novo") != null)
email_novo_reserva = document.getElementById("email_novo").value;
else
email_novo_reserva = "";
if(document.getElementById("id_empresa") != null){
if("N"=="S")
{
tipoObrigatorio = document.getElementById("id_empresa").value;
if(tipoObrigatorio == -1){
alert("Selecione a opção obrigatória!");
document.getElementById("id_empresa").focus();
return;
}
}
}
if(indicador == "n")
var acao_emprestimo = 1;
else
var acao_emprestimo = 0;
if(indicador == "v"){
if(login_acesso3_reserva.trim()==""){
alert("Por favor preencher o campo "+document.getElementById("id_denominacao_login_se").innerHTML+"!");
document.getElementById("login_acesso_novo3").focus();
return;
}
if(senha_acesso3_reserva.trim()==""){
alert("Digite sua senha!");
document.getElementById("senha_acesso_novo3").focus();
return;
}
var seguranca_letras = "";
}
estado_validacao = true;
if(login_acesso3_reserva != "" && senha_acesso3_reserva != "")
estado_validacao = valida_login_armazem_reserva("3");
if((estado_validacao) || (indicador == "n") || ((estado_validacao) && (indicador == "n"))){
if(document.getElementById("biblioteca_recebimento_novo") != null){
cod_bib_rec_reserva = document.getElementById("biblioteca_recebimento_novo").value;
if(cod_bib_rec_reserva=="" && (indicador == "v" || indicador == "n")) //Chin Lau - Atendimento 86884 - Voltei o Original.
{
alert("Favor selecionar o campo "+document.getElementById("id_denominacao_biblioteca_se2").innerHTML+"!");
document.getElementById("biblioteca_recebimento_novo").focus();
return;
}
}
else
cod_bib_rec_reserva = "";
if(document.getElementById("envia_reserva") != null){
document.getElementById("envia_reserva").setAttribute("value","Aguarde...");
document.getElementById("envia_reserva").setAttribute("disabled","true");
}
x_ajax_mostra_req_material(cod_acervo_temp_js,cod_bib_reserva,volume_reserva,tomos_reserva,parte_reserva,login_acesso3_reserva,senha_acesso3_reserva.replace("+","%2B"),mat_adicional_reserva,cod_bib_rec_reserva,cod_local_rec_reserva,pessoa_autorizada_reserva,indicador,tipoObrigatorio,seguranca_letras,telefone_novo_reserva,email_novo_reserva,categoria_usuario,acao_emprestimo,mostra_tela_req_material);
}
}else{
if(document.getElementById("login_acesso_novo3") == null){
MM_showHideLayers('solicita','','hide');
alert("Usuário não está logado");
}
}
}
function busca_codigo_class(valor)
{
document.getElementById("menu_quadro_class").innerHTML = "";
if(valor!="")
{
document.getElementById("menu_quadro_class").innerHTML = "<div class='pmu_dados1'><div id='id_loading2' align='center'><img src='../img/loading.gif'>Aguarde...</div></div>";
document.getElementById("cod_tipo_area_conhecimento_tela").value = valor;
x_ajax_mostra_menu_class(valor,retorno_class);
}
}
function retorno_class(novo_dado)
{
document.getElementById("menu_quadro_class").innerHTML = novo_dado;
}
function expande_class(id_nome)
{
if(document.getElementById("2_"+id_nome).innerHTML=="+")
{
document.getElementById("2_"+id_nome).innerHTML="-";
document.getElementById("1_"+id_nome).setAttribute("class","tesauro_menos");
document.getElementById("dados_2_"+id_nome).innerHTML="<img src='../img/loading.gif'><font face='Geneva, Arial, Helvetica, sans-serif;' size='1' color='#666'>Aguarde...</font>";
document.getElementById("dados_1_"+id_nome).style.display="";
x_ajax_mostra_class_filho(document.getElementById("cod_tipo_area_conhecimento_tela").value,id_nome,mostra_class_filho); //id_nome = area_conhecimento_aux
}
else
{
document.getElementById("2_"+id_nome).innerHTML="+";
document.getElementById("1_"+id_nome).setAttribute("class","tesauro_mais");
document.getElementById("dados_1_"+id_nome).style.display="none";
}
}
function mostra_class_filho(novo_dado)
{
document.getElementById("dados_2_"+novo_dado[0]).innerHTML=novo_dado[1];
}
function consultar_quadro_class()
{
if(document.getElementById("id_tesauro") == null)
{
document.getElementById("div_resultados").innerHTML = "<div class='div_sombra_1'> ;</div><div id='id_avancado'><table width='100%' border='0' cellspacing='0' cellpadding='0'><tbody><tr><td><fieldset class='borda_termo'><legend>Termo Pesquisado</legend><a class='txt_acervo'> ;</a><a name='sobe_paginacao'></a></fieldset></td><td width='150'><fieldset class='borda_termo'><legend>Adicionar à Cesta:</legend><a href='javascript: void(0);' class='link_azul_claro'>Todos</a><span class='txt_acervo'>| ;</span><a href='javascript: void(0);' class='link_azul_claro'>Esta Página</a></fieldset></td></tr></tbody></table><div><table width='100%' border='0' cellspacing='0' cellpadding='0'><tbody><tr><td width='20%'><div class='txt_acervo2'> ; ;</div></td><td class='pmu_div_protecao_2' nowrap><div align='center'></div></td></tr></tbody></table><table width='100%' border='0' cellspacing='0' cellpadding='0'><tbody><tr><td width='1' valign='top' class='tesauro_td'><div id='id_tesauro' class='tesauro_div' style='display: none'></div></td><td width='1' valign='top' class='div_config'><div id='id_filtros' style='display:none'></div></td><td valign='top'><div id='TabbedPanels1' class='TabbedPanels'><ul class='TabbedPanelsTabGroup'><li class='TabbedPanelsTab TabbedPanelsTabSelected' tabindex='0' onclick='acao_tab("resultado");'>Resultados</li><!--<li class='TabbedPanelsTab' tabindex='0' onclick='acao_tab("cesta");'>Cesta</li><li class='TabbedPanelsTab' tabindex='0' onclick='acao_tab("autores");'>Autores</li><li class='TabbedPanelsTab' tabindex='0' onclick='acao_tab("assuntos");'>Assuntos</li><li class='TabbedPanelsTab' tabindex='0' onclick='acao_tab("redepergamum");'>Rede Pergamum</li>--></ul><div class='TabbedPanelsContentGroup'><div class='TabbedPanelsContent TabbedPanelsContentVisible' style='display: block; '><div id='novo_inserir' class='btn_inserir_resultado' style='display:none' onclick=\"MM_showHideLayers('tesauro','','show'); inserir_novo_material(document.getElementById('cod_area_conhecimento_tela').value,'','');\"><strong>(+)</strong> Inserir</div><div id='texto_marcado' style='display:none'>» Teste 123</div><span id='id_resultados_temp' style='display:'><div class='pmu_dados1'><div id='id_loading2' align='center' style='display:'> ;</div></div></span></div><!--<div class='TabbedPanelsContent' style='display: none; '><div class='layer_meio3'><div id='id_cesta_temp' style='display: block'></div></div></div><div class='TabbedPanelsContent' style='display: none; '><span id='id_autores_temp' style='display: block'></span></div><div class='TabbedPanelsContent' style='display: none; '><span id='id_assuntos_temp' style='display: block'></span></div><div class='TabbedPanelsContent' style='display: none; '><span id='id_redepergamum_temp' style='display: block'></span></div>--></div></div></td></tr></tbody></table> ;</div></div>";
TabbedPanels1;
if(TabbedPanels1=="")
{
TabbedPanels1 = new Spry.Widget.TabbedPanels("TabbedPanels1");
}
}
if(document.getElementById("id_tesauro") != null)
{
document.getElementById("id_tesauro").innerHTML = "<div class='pmu_dados1'><div id='id_loading2' align='center'><img src='../img/loading.gif'>Aguarde...</div></div>";
if(document.getElementById('id_tesauro').style.display=='')
document.getElementById('id_tesauro').style.display="none";
else
{
document.getElementById('id_tesauro').style.display="";
x_ajax_consulta_quadro_class(mostra_consulta_quadro);
}
}
}
function mostra_consulta_quadro(novo_dado)
{
document.getElementById("id_tesauro").innerHTML = novo_dado;
}
function consulta_acervos_class(cod_tipo_area_conhec,cod_area_conhec,desc_area_conhec,cod_nivel_permissao,descricao_nivel)
{
document.getElementById("id_resultados_temp").innerHTML = "<div class='pmu_dados1'><div id='id_loading2' align='center'><img src='../img/loading.gif'>Aguarde...</div></div>";
document.getElementById("cod_area_conhecimento_tela").value = cod_area_conhec;
document.getElementById("cod_nivel_permissao_area").value = cod_nivel_permissao;
document.getElementById("cod_tipo_area_conhec_tela").value = cod_tipo_area_conhec;
espaco_esquerda=" ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ;";
document.getElementById('novo_inserir').style.display="none";
if(cod_nivel_permissao==3 || cod_nivel_permissao==4)
{
document.getElementById('novo_inserir').style.display="";
espaco_esquerda="";
}
document.getElementById('texto_marcado').style.display="";
document.getElementById("texto_marcado").innerHTML = espaco_esquerda+'('+descricao_nivel+')'+' '+cod_area_conhec+' - '+desc_area_conhec;
x_ajax_resultado_class(cod_tipo_area_conhec,cod_area_conhec,desc_area_conhec,cod_nivel_permissao,mostra_resultado_class);
}
function mostra_resultado_class(dado)
{
document.getElementById("id_resultados_temp").innerHTML = dado;
}
function mostra_relacao_indexar(codigo,cod_nivel_permissao)
{
if(document.getElementById("outro0_"+codigo).innerHTML=="+")
{
document.getElementById("outro0_"+codigo).innerHTML="-";
document.getElementById("outro2_"+codigo).innerHTML = "<div class='pmu_dados1'><div id='id_loading2' align='center'><img src='../img/loading.gif'>Aguarde...</div></div>";
x_ajax_relacao_indexar(codigo,cod_nivel_permissao,document.getElementById("cod_tipo_area_conhec_tela").value,result_indexar);
}
else
{
document.getElementById("outro0_"+codigo).innerHTML="+";
document.getElementById("outro1_"+codigo).innerHTML = "";
document.getElementById("outro2_"+codigo).innerHTML = "";
}
}
function result_indexar(novo_dado_indexar)
{
document.getElementById("outro1_"+novo_dado_indexar[0]).innerHTML = novo_dado_indexar[1];
document.getElementById("outro2_"+novo_dado_indexar[0]).innerHTML = novo_dado_indexar[2];
}
function inserir_novo_material(cod_acervo,descricao,cod_tipo_area_conhec)
{
if(cod_tipo_area_conhec=="")
cod_tipo_area_conhec = document.getElementById("cod_tipo_area_conhecimento_tela").value;
document.getElementById("codigo_acervo_tela").value = cod_acervo;
document.getElementById("div_detalhes_tesauro").innerHTML = "<br><br><br><br><br><br><br><br><br><br><br><br><font class='link_aguarde'>Aguarde...</font>";
x_ajax_tela_inserir_material(cod_acervo,descricao,cod_tipo_area_conhec,mostra_tela_inserir_material);
}
function mostra_tela_inserir_material(tela)
{
document.getElementById("div_detalhes_tesauro").innerHTML = tela;
}
function gravar_quadro_class()
{
nome_material = "";
if(document.getElementById("titulo_select") != null)
{
nome_material = document.getElementById("titulo_select").value;
if(nome_material.trim()=="")
{
alert("Material sem título!");
return;
}
}
cod_tipo_area = document.getElementById("cod_tipo_area_conhecimento_select").value;
if(cod_tipo_area=="")
{
alert("Ocorreu um erro ao buscar o código do tipo de área de conhecimento!");
return;
}
cod_obra = document.getElementById("tipo_material_class").value;
valor1 = "";
valor2 = "";
i_pipe = cod_obra.indexOf("|");
if(i_pipe != -1)
{
tamanho = cod_obra.length;
valor1 = cod_obra.substring(0,i_pipe); //Código
valor2 = cod_obra.substring(i_pipe+1,tamanho); //Icone
}
cod_obra = valor1;
if(cod_obra=="")
{
alert("Selecione o tipo de material!");
document.getElementById("tipo_material_class").focus();
return;
}
cod_nivel = "";
if(document.getElementById("nivel_temp_autorizacao")!=null)
{
if(document.getElementById("nivel_temp_autorizacao").checked==true)
{
cod_nivel = document.getElementById("nivel_temp_autorizacao").value;
}
}
else
{
cod_nivel = document.getElementById("niveis_selecionados").value;
}
biblio_class = "";
if(document.getElementById("bib_temp_bib")!=null)
{
biblio_class = document.getElementById("bib_temp_bib").value;
}
else
{
biblio_class = document.getElementById("bibi_class_selecionados").value;
}
titulo_class_anexo = parent.anexo_class.document.form_anexo.titulo_class.value;
if(titulo_class_anexo.trim()=="")
{
alert("É necessário informar um título!");
parent.anexo_class.document.form_anexo.titulo_class.focus();
return;
}
anexo_url856u = parent.anexo_class.document.form_anexo.url856u.value;
autor_class = "";
if(document.getElementById("autor_class") != null)
{
autor_class = document.getElementById("autor_class").value;
}
obs_class = "";
if(document.getElementById("obs_class") != null)
{
obs_class = document.getElementById("obs_class").value;
}
cod_area_conhec_tela = document.getElementById("cod_area_conhecimento_tela").value;
codigo_acervo_tela2 = document.getElementById("codigo_acervo_tela").value;
diretorio = parent.anexo_class.document.form_anexo.diretorio.value;
nome_arquivo = parent.anexo_class.document.form_anexo.nome_arquivo.value;
size_anexo = parent.anexo_class.document.form_anexo.size_anexo.value;
document.getElementById("incluir_quadro").disabled=true;
document.getElementById("incluir_quadro").value="Aguarde...";
if(cod_area_conhec_tela==codigo_acervo_tela2)
codigo_acervo_tela2="";
x_ajax_grava_novo_material_class(cod_tipo_area,cod_obra,cod_nivel,biblio_class,titulo_class_anexo,anexo_url856u,autor_class,obs_class,cod_area_conhec_tela,codigo_acervo_tela2,diretorio,nome_arquivo,size_anexo,retorno_grava_class);
}
function retorno_grava_class(novo_dado)
{
cod_nivel_permissao_area = document.getElementById("cod_nivel_permissao_area").value;
document.getElementById("incluir_quadro").disabled=false;
document.getElementById("incluir_quadro").value="Confirmar";
if(novo_dado=="ok")
{
MM_showHideLayers('tesauro','','hide');
document.getElementById("niveis_selecionados").value = "";
document.getElementById("bibi_class_selecionados").value = "";
parent.anexo_class.document.form_anexo.titulo_class.value = "";
document.getElementById("autor_class").value = "";
document.getElementById("obs_class").value = "";
parent.anexo_class.document.form_anexo.diretorio.value = "";
parent.anexo_class.document.form_anexo.nome_arquivo.value = "";
parent.anexo_class.document.form_anexo.size_anexo.value = "";
parent.anexo_class.document.form_anexo.url856u.value = "";
codigo = document.getElementById("codigo_acervo_tela").value;
document.getElementById("outro0_"+codigo).innerHTML="-";
document.getElementById("outro2_"+codigo).innerHTML = "<div class='pmu_dados1'><div id='id_loading2' align='center'><img src='../img/loading.gif'>Aguarde...</div></div>";
x_ajax_relacao_indexar(codigo,cod_nivel_permissao_area,document.getElementById("cod_tipo_area_conhec_tela").value,result_indexar);
return;
}
if(novo_dado=="ok2")
{
document.getElementById("id_resultados_temp").innerHTML = "<div class='pmu_dados1'><div id='id_loading2' align='center'><img src='../img/loading.gif'>Aguarde...</div></div>";
cod_tipo_area_conhec = document.getElementById("cod_tipo_area_conhecimento_select").value;
cod_area_conhec = document.getElementById("cod_area_conhecimento_tela").value;
MM_showHideLayers('tesauro','','hide');
document.getElementById("niveis_selecionados").value = "";
document.getElementById("bibi_class_selecionados").value = "";
parent.anexo_class.document.form_anexo.titulo_class.value = "";
document.getElementById("autor_class").value = "";
document.getElementById("obs_class").value = "";
parent.anexo_class.document.form_anexo.diretorio.value = "";
parent.anexo_class.document.form_anexo.nome_arquivo.value = "";
parent.anexo_class.document.form_anexo.size_anexo.value = "";
parent.anexo_class.document.form_anexo.url856u.value = "";
x_ajax_resultado_class(cod_tipo_area_conhec,cod_area_conhec,'',cod_nivel_permissao_area,mostra_resultado_class);
return;
}
alert(novo_dado); //Mostra erro
}
function ver_permissao_material(valor)
{
i_pipe = valor.indexOf("|");
if(i_pipe != -1)
{
tamanho = valor.length;
valor1 = valor.substring(0,i_pipe); //Código
valor2 = valor.substring(i_pipe+1,tamanho); //Icone
if(valor2.toLowerCase().trim()=="btn_red_grupo" || valor2.toLowerCase().trim()=="btn_red_pasta") //Some o campo de anexo
{
parent.anexo_class.document.getElementById('some_anexo').style.display="none";
document.getElementById("anexo_class").height=25;
if(valor2.toLowerCase().trim()=="btn_red_pasta") //Some autor e observação
{
document.getElementById('some_autor').style.display="none";
document.getElementById('some_obs').style.display="none";
}
else
{
document.getElementById('some_autor').style.display="";
document.getElementById('some_obs').style.display="";
}
}
else
{
parent.anexo_class.document.getElementById('some_anexo').style.display="";
document.getElementById("anexo_class").height=70;
document.getElementById('some_autor').style.display="";
document.getElementById('some_obs').style.display="";
}
}
}
function mostra_sgc_volumes(cod_acervo)
{
document.getElementById("div_sgc_volumes").innerHTML = "<br><br><br><br><br><br><br><br><br><br><br><br><font class='link_aguarde'>Aguarde...</font>";
x_ajax_mostra_sgc_volumes(cod_acervo,mostra_sgc_volumes_dado);
}
function mostra_sgc_volumes_dado(novo_dado)
{
document.getElementById("div_sgc_volumes").innerHTML = novo_dado;
}
function transfere_sgc()
{
document.getElementById("enviar_sgc").value="Aguarde...";
document.getElementById("enviar_sgc").disabled=true;
x_ajax_transfere_sgc(sgs_retorno);
}
function sgs_retorno(novo_dado)
{
alert(novo_dado);
document.getElementById("enviar_sgc").value="Enviar SGC";
document.getElementById("enviar_sgc").disabled=false;
}
function gravar_volumes_sgc(acervo,total)
{
indices = "";
for(i=0;i < total;i++)
{
if(document.getElementById("seq_sgc_"+i).checked==true)
indices = i+"-MCL-"+indices;
}
if(indices=="")
{
alert("Selecione o volume ou volumes!");
return;
}
document.getElementById("gravando_vol").value="Aguarde...";
document.getElementById("gravando_vol").disabled=true;
x_ajax_grava_volumes_sgc(acervo,indices,mostra_grava_volumes);
}
function mostra_grava_volumes(novo_dado){
x_ajax_tela_cesta("cesta",retorno_tela_cesta);
alert(novo_dado);
document.getElementById("gravando_vol").value="Aguarde";
document.getElementById("gravando_vol").disabled=false;
}
function marca_volumes_sgc(total)
{
if(document.getElementById("seq_sgc").checked==true)
estado = true;
else
estado = false;
for(i=0;i < total;i++)
{
document.getElementById("seq_sgc_"+i).checked=estado;
}
}
function busca_refinamento_filtros_oai(empresa_oai,flag)
{
document.getElementById("empresa_oai_temp").value=empresa_oai;
if(flag=="G")
acao_tab('rede_oai_geral');
if(flag=="L")
acao_tab('rede_oai_local');
}
$(document).ready(function()
{
var arr_path = $(location).attr('pathname').split("/");
var nome_arquivo = arr_path[arr_path.length - 1];
var caminho_css = "../css/contraste_consulta.css";
if(nome_arquivo == "login_usu.php")
caminho_css = "../" + caminho_css;
$("#alto_contraste,#icon-contraste").click(function(){
var css_atual = $("link").attr("href");
if(css_atual == "../css/css_original_consulta.css" ){
muda_css(caminho_css);
grava_storage("S");
}
else{
muda_css("../css/css_original_consulta.css");
grava_storage("N");
}
});
if(typeof(Storage) !=="undefined"){
if(localStorage.contraste=="S")
muda_css(caminho_css);
}else{
alert("Este evento só é valido a partir do edge para windows 10, por favor atualize seu navegador");
}
});
function grava_storage(value){
if(typeof(Storage) !== "undefined")
localStorage.contraste = value;
}
function muda_css(nome){
$("link").attr("href",nome);
}
function mostra_table_sugestao_aquisicao(){
document.getElementById("fundo_sugestao_aquisicao").style.display="none";
document.getElementById("table_sugestao_aquisicao").style.display="";
}
function mostra_table_ajuda_catalogo(){
document.getElementById("fundo_ajuda").style.display="none";
document.getElementById("table_catalogo").style.display="";
}
function mostra_table_ajuda_meu_pergamum(){
document.getElementById("fundo_ajuda").style.display="none";
document.getElementById("table_meu_pergamum").style.display="";
}
function mostra_ajuda_dado(novo_dado){
document.getElementById("div_ajuda_novo").innerHTML = novo_dado;
}
function redireciona_perseus(){
return false;
}
function redireciona_saml(){
return false;
}
function usa_perseus(){
return false;
}
function usa_saml(){
return false;
}
</script>]]>
|