// JavaScript Document


/******************************************************************************/
/*********************** FUNCIONES DE USO GENERAL *****************************/
/******************************************************************************/

// imprime el contenido de la cosnulta
function excel() {
    var consulta= document.getElementById( 'divResultados' ).innerHTML;
    var html= new String();
    var patron = new RegExp("&Oacute;", "g")

    html= consulta;
    //alert( "excel()" );
    //alert( consulta );
    // limpiar de acute y tildes
    html= html.replace(patron, "O");
    //alert( html.toString() );
    document.Excel.action= "imprimir.jsp";
    document.Excel.contenido.value= html.toString();
    document.Excel.submit();
}

// restringe controles para el portal del siiap
function verificaControles() {
    var edo= document.Forma.edodef.value;

    if ( edo == 0 ) {
        // solo pon a nivel estatal la informacion
        document.Forma.nivel.options.length= 1;
    } // if
} // funcion
