function jsaShowCalendarTasks($date)
{
    $xD = new cFecha();
    $date = $xD->getFechaISO($date);
    $xLi = new cSQLListas();
    $cTbl = new cTabla($xLi->getListadoDeTareas(getUsuarioActual(), $date));
    $cTbl->setKeyField("idusuarios_web_notas");
    $cTbl->setKeyTable("usuarios_web_notas");
    $cTbl->OButton("TR.Checado", "setUpdateEstatus(_REPLACE_ID_)", $cTbl->ODicIcons()->OK);
    return $cTbl->Show("TR.Tareas");
}