function executeCambiarcalendario()
 {
     $mes = $this->getRequestParameter('mes');
     $year = $this->getRequestParameter("year");
     //include_once('CalendarShow.class.php');
     $cal = TareaPeer::createCalendarioMes($mes, $year, 0);
     $this->calendarioMes = $cal->getMonthView($mes, $year);
     $this->sumario = $cal->getTxtSummary();
     $this->mes = $mes;
     $this->year = $year;
 }