/* ------------------ Proyecto GAP07 ver 1.0 ------------------ */
/* ------------------ Script de la parte XXXXX ----- */
    // CONSTANTES
    
    var MODAL_ACTIVO = false;
    var VENTANA_ESTADISTICA = "/Iniciativas/ResultadosSimple.aspx";
    
    // FUNCIONES POP-UP ESTADISTICAS
    
    // Función que abre un pop-up con el contenido de una estadística
    function VerEstadistica(fecha, ref)
    {
            if (MODAL_ACTIVO)
                PopUpModal(VENTANA_ESTADISTICA + '?Fecha=' + fecha + '&NumRef=' + ref,400,400);
            else
                PopUpNoModal(VENTANA_ESTADISTICA + '?Fecha=' + fecha + '&NumRef=' + ref,400,400);
    }
    
        // Función que abre una ventana modal
    function PopUpModal(url, height, width)
    {
        alert('center=YES,width='+width+',height='+height+',scrollbars=YES,status=NO');
        window.showModalDialog(url,'','center=yes,width='+width+',height='+height+',scrollbars=YES,status=NO');
    }
    
    // Función que abre una ventana no modal
    function PopUpNoModal(url, height, width)
    {
        window.open(url,'','center=YES,width='+width+',height='+height+',scrollbars=YES');
    }



/* ------------------ Ultima Modificación : 21-3-2007 ----- */

