
// **********************************************************
// **  Presenta otras fuentes para seleccionar
// **********************************************************

function abrirFUENTES(masOPCIONES)
{

        idx= (document.bvsdeQUERY.bases.selectedIndex < 1 ? 0 : document.bvsdeQUERY.bases.selectedIndex);
        if (idx < 1) {
           document.bvsdeQUERY.fuenteSEL.value = "ingresar palabras de búsqueda.";
           return;
        }

        winRESULT = window.open(masOPCIONES,"winRESULT","WIDTH=600,HEIGHT=500,menubar=no,resizable=yes,scrollbars=yes,status=yes,location=no,toolbar=no");
        winRESULT.moveTo(70,20);
}

// **********************************************************
// **  Ejecuta el metaiah
// **********************************************************
function glb_runQUERY(backPAGE)
{
        if (document.bvsdeQUERY.expresion.value=="") return false;

      fuentesBVSDE = "[TEXTOS_COMPLETOS][COLECCION_DOCUMENTOS][SITIOS_WEB_RELACIONADOS][RECURSOS_MULTIMEDIA][EVENTOS][DIRECTORIO_CONTACTOS]";

        idx= (document.bvsdeQUERY.bases.selectedIndex < 1 ? 0 : document.bvsdeQUERY.bases.selectedIndex);
        if (idx < 1)  document.bvsdeQUERY.fuentesINFO.value = fuentesBVSDE;
        if (idx == 1) document.bvsdeQUERY.fuentesINFO.value = document.bvsdeQUERY.otrasFUENTES.value;

        actualCAPA = document.getElementById("progressBAR");
        actualCAPA.style.visibility = "visible";
        bar1.showBar();

        searchBVSDE(backPAGE);
        return false;

}