function redirige(obj)
{
    var opcion = obj.selectedIndex
    obj.selectedIndex = 0;

    if (opcion == 2)
    {
        var aux = confirm("¿Está seguro que quiere eliminar este expediente?");

        if (aux)
        {
            document.forms.FORMULARIO.idExpediente.value = obj.options[opcion].value;
            document.forms.FORMULARIO.accion.value = 1;
            document.forms.FORMULARIO.action="modif_exp.php";
            document.forms.FORMULARIO.submit();
        }
    }
    else
    {
        if (opcion == 1)
        {
            document.forms.FORMULARIO.accion.value=2;
            document.forms.FORMULARIO.idExpediente.value = obj.options[opcion].value;
            document.forms.FORMULARIO.action="edic_exp.php";
            document.forms.FORMULARIO.submit();
        }
        else
        {
            if (opcion == 3)
            {
                var idExpediente = obj.options[opcion].value;
                window.open('imprimir_expediente.php?id='+idExpediente, '_blank', 'width=500,height=300, scrollbars=yes, resizable=yes');
                document.forms.FORMULARIO.accion.value="imprimir";
            }
            else
            {
                document.forms.FORMULARIO.accion.value="3";
                document.forms.FORMULARIO.action="edic_exp.php";
                document.forms.FORMULARIO.submit();
            }
        }
    }
}


function borraFormulario()
{
    document.forms.FORMULARIO.Id.value = '';
    document.forms.FORMULARIO.Contenido.value = '';
    document.forms.FORMULARIO.Caja.value = '';
    document.forms.FORMULARIO.Observaciones.value = '';
    document.FORMULARIO.clasificaciones.selectedIndex = 0;

    document.forms.FORMULARIO.FechaInicioMonth.selectedIndex=0;
    document.forms.FORMULARIO.FechaInicioYear.selectedIndex=0;
    document.forms.FORMULARIO.FechaInicioDay.selectedIndex=0;

    document.forms.FORMULARIO.FechaFinMonth.selectedIndex=0;
    document.forms.FORMULARIO.FechaFinYear.selectedIndex=0;
    document.forms.FORMULARIO.FechaFinDay.selectedIndex=0;
}


function comprueba_formulario()
{
    var i = 0;

    if (document.forms.FORMULARIO.FechaInicioMonth.selectedIndex!=0)
        i++;
    if (document.forms.FORMULARIO.FechaInicioYear.selectedIndex!=0)
        i++;
    if (document.forms.FORMULARIO.FechaInicioDay.selectedIndex!=0)
        i++;

    if (i==1 || i==2)
    {
        alert("Si desea indicar una fecha de inicio, debe indicar día, mes y año")
        return false
    }
    else
    {
        i = 0;
        if (document.forms.FORMULARIO.FechaFinMonth.selectedIndex!=0)
            i++;
        if (document.forms.FORMULARIO.FechaFinYear.selectedIndex!=0)
            i++;
        if (document.forms.FORMULARIO.FechaFinDay.selectedIndex!=0)
            i++;

        if (i==1 || i==2)
        {
            alert("Si desea indicar una fecha de fin, debe indicar día, mes y año")
            return false;
        }
        else
        {
            if ( (document.forms.FORMULARIO.Id.value.length==0) && (document.forms.FORMULARIO.Contenido.value.length==0) && (document.forms.FORMULARIO.Caja.value.length==0) && (document.forms.FORMULARIO.Observaciones.value.length==0) && (document.FORMULARIO.clasificaciones.selectedIndex==0) && (document.forms.FORMULARIO.FechaFinMonth.selectedIndex==0) && (document.forms.FORMULARIO.FechaFinDay.selectedIndex==0) && (document.forms.FORMULARIO.FechaFinYear.selectedIndex==0) && (document.forms.FORMULARIO.FechaInicioMonth.selectedIndex==0) && (document.forms.FORMULARIO.FechaInicioDay.selectedIndex==0) && (document.forms.FORMULARIO.FechaInicioYear.selectedIndex==0) && !document.forms.FORMULARIO.conObservaciones.checked)
            {
                alert('Debe introducir al menos un criterio de búsqueda');
                return false;
            }
        }
    }
    return true;
}
