/*************************************************
* link al programa de radio
*/
function loadPROGRAMA()
{

    prog = document.getElementById("programa").href;
    window.open(prog);

}

/***************************************
*  Evalua la tecla digitada
*/
function evaluaTECLA()
{
    if (event.keyCode()==13) metaSEARCH();
}


/*************************************************
* ejecuta el metabuscador
*/
function metaSEARCH()
{

    exp = trim(document.metaSEARCH.buscar.value);
    if (exp=="") {
        alert ("Debe ingresar palabras de busqueda");
        return;
    }
    
    app = "/site/OnLine/app/meta-search.php?exp=" + exp;
    winHTML = window.open(app,"winHTML","WIDTH=700,HEIGHT=700,menubar=no,resizable=no,scrollbars=yes,status=yes,location=no,toolbar=no");
    winHTML.moveTo(200,10);    

}

/*************************************************
* limpia cadena
*/
function replace(data,buscar,cambiar)
{
    while (true) {
        if (data.indexOf(buscar)==-1) break;
        data = data.replace(buscar,cambiar);
    }
    return data;
} 

/*************************************************
* limpia cadena
*/
function trim(str)
{
   return str.replace(/^\s*|\s*$/g,"");
} 


/*************************************************
* Abre una ventana nueva
*/

function abrirWINMSG(url)
{
    winMSG = window.open(url,"winMSG","WIDTH=1,HEIGHT=1,menubar=no,resizable=no,scrollbars=no,status=yes,location=no,toolbar=no");
    winMSG.moveTo(0,0);
}


/*************************************************
* Presetna el contenido
*/
function showME(sql,id)
{
    app = "/site/OnLine/app/get.php?sql=" + sql + "&it_key=" + id;
    winHTML = window.open(app,"winHTML","WIDTH=550,HEIGHT=400,menubar=no,resizable=no,scrollbars=yes,status=yes,location=no,toolbar=no");
    winHTML.moveTo(50,100);
}

/*************************************************
* Presenta el contenido - ventanas estaticas
*/
function showINFO(url)
{
    winMSG = window.open(url,"winMSG","WIDTH=400,HEIGHT=250,menubar=no,resizable=no,scrollbars=no,status=yes,location=no,toolbar=no");
    winMSG.moveTo(100,50);
}

/*************************************************
* Presenta el contenido del link
*/
function showDETALLE(sqlFILE,it_key)
{
    url = "/site/OnLine/app/show-detalle.php?sqlFILE=" + sqlFILE + "&it_key=" + it_key;
    winMSG = window.open(url,"winMSG","WIDTH=730,HEIGHT=500,menubar=no,resizable=no,scrollbars=yes,status=yes,location=no,toolbar=no");
    winMSG.moveTo(100,50);
}

/*************************************************
* Presenta el contenido del link
*/
function showPROYECTO(it_key)
{
    url = "/site/OnLine/app/show-proyecto.php?tipo=" + it_key;
    winMSG = window.open(url,"winMSG","WIDTH=730,HEIGHT=500,menubar=no,resizable=no,scrollbars=yes,status=yes,location=no,toolbar=no");
    winMSG.moveTo(100,50);
}
