//**************************** NOVIDADES PUBLICAS ***************************
function buscarAxenda()
{	          
      var form = document.getElementById("formAxenda");
      form.action = '/' + proyecto + '/axenda/listadoAxendaHistorico.jsp';                             
      form.submit();   	        
}

function ampliarAxenda(pId)
{	          
      var form = document.getElementById("formAxenda");
      form.action = '/' + proyecto + '/axenda/datosAxendaHistorico.jsp';

      //Asignamos el id que vamos a ampliar
      document.getElementById("idAxenda").value = pId;

      form.submit();   	    
}   
