	function llamadaBuscadorAvan() {
		document.getElementById("frmLlamada").OPERATIVA.value="NA";
		document.getElementById("frmLlamada").PAGINA.value="web/buscador/jsp/buscadoravanzado.jsp";
		document.getElementById("frmLlamada").URLPAGINA.value=document.getElementById("PAGVOLVER").value;
		document.getElementById("frmLlamada").action=rutaservidorAuxMenu + "Navegacion";
		document.getElementById("frmLlamada").submit();
	}				
	function llamadaBuscador() {
		document.getElementById("buscar").value = trim(document.getElementById("buscar").value);
		var palabra = document.getElementById("buscar").value;
		if (palabra=="") {
			alert("Debe introducir un texto para buscar");
			document.getElementById("buscar").focus();
			return;
		}
		document.getElementById("frmLlamada").OPERATIVA.value="BUSCRAPI";
		document.getElementById("frmLlamada").OPERATIVARAIZ.value="BUSCRAPI";
		document.getElementById("frmLlamada").PAGINA.value="web/buscador/jsp/buscador.jsp";
		document.getElementById("frmLlamada").PAGINAINI.value="web/buscador/jsp/buscadoravanzado.jsp";		
		document.getElementById("frmLlamada").TEXTOCON.value=palabra;	
		document.getElementById("frmLlamada").URLPAGINA.value=document.getElementById("PAGVOLVER").value;
		document.getElementById("frmLlamada").PAGIPEDI.value="1";  	
		document.getElementById("frmLlamada").PRIMEPAG.value="1";  	
		document.getElementById("frmLlamada").TAMANOPA.value="8";  	
		document.getElementById("frmLlamada").TOTALPAG.value="";  	
		document.getElementById("frmLlamada").action=rutaservidorAuxMenu + "Buscador";
		document.getElementById("frmLlamada").submit();
	}	
	function llamarBuscador() {
		document.getElementById("formVolverCab").action=document.getElementById("formVolverCab").ACTION.value;
		document.getElementById("formVolverCab").OPERATIVA.value=document.getElementById("formVolverCab").OPERATIVARAIZ.value;
		document.getElementById("formVolverCab").PAGINA.value=document.getElementById("formVolverCab").PAGINARAIZ.value;
		document.getElementById("formVolverCab").submit();
	}

	function llamadaCatalogo(codCatalogo) {
		document.getElementById("frmLlamada").OPERATIVA.value="CA";
		document.getElementById("frmLlamada").PAGINA.value="web/listados/jsp/catalogo.jsp";
		document.getElementById("frmLlamada").CCATALOG.value=codCatalogo;		
		document.getElementById("frmLlamada").URLPAGINA.value=document.getElementById("PAGVOLVER").value;
		document.getElementById("frmLlamada").action=rutaservidorAuxMenu + "Listados";
		document.getElementById("frmLlamada").submit();
	}
	
	function llamadaDescarga() {
		document.getElementById("frmLlamada").OPERATIVA.value="LI";
		document.getElementById("frmLlamada").PAGINA.value="web/descarga/jsp/descargacatalogos.jsp";
		document.getElementById("frmLlamada").URLPAGINA.value=document.getElementById("PAGVOLVER").value;
		document.getElementById("frmLlamada").action=rutaservidorAuxMenu + "DescargaCatalogos";
		document.getElementById("frmLlamada").submit();
	}
	function llamadaOfertas() {
		document.getElementById("frmLlamada").OPERATIVA.value="OF";
		document.getElementById("frmLlamada").PAGINA.value="web/listados/jsp/ofertas.jsp";
		document.getElementById("frmLlamada").URLPAGINA.value=document.getElementById("PAGVOLVER").value;
		document.getElementById("frmLlamada").action=rutaservidorAuxMenu + "Listados";
		document.getElementById("frmLlamada").submit();
	}
	function llamadaNovedades() {
		document.getElementById("frmLlamada").OPERATIVA.value="NO";
		document.getElementById("frmLlamada").PAGINA.value="web/listados/jsp/novedades.jsp";
		document.getElementById("frmLlamada").URLPAGINA.value=document.getElementById("PAGVOLVER").value;
		document.getElementById("frmLlamada").action=rutaservidorAuxMenu + "Listados";
		document.getElementById("frmLlamada").submit();
	}
/*Inicio cambio 20/03/2007*/
	function llamadaEmbajadas() {
		document.getElementById("frmLlamada").OPERATIVA.value="NA";
		document.getElementById("frmLlamada").PAGINA.value="web/comun/jsp/servicio_embajadas.jsp";		
		document.getElementById("frmLlamada").URLPAGINA.value=document.getElementById("PAGVOLVER").value;
		document.getElementById("frmLlamada").action=rutaservidorAuxMenu + "Navegacion";
		document.getElementById("frmLlamada").submit();
	}
/*Fin cambio 20/03/2007*/	

	function ltrim (s) {
		return s.replace( /^\s*/, "" )
	}
	
	function rtrim (s) {
		return s.replace( /\s*$/, "" );
	}
	
	function trim (s) {
		return rtrim(ltrim(s));
	} 
