//**************************** ENTIDADES PUBLICAS ***************************

//*****************************MENU ENTIDADE *************************
function inicio(){                   
    var form = document.getElementById("formEntidade");
    form.action = '/' + proyecto +'/entidades/datosEntidade.jsp';          
    form.submit();  
}       

function novidades(){   
    var form = document.getElementById("formEntidade");
    form.action = '/' + proyecto +'/entidades/novidades/listadoNovidadesEntidade.jsp';

    form.submit();   	    
}            

function axenda(){   
    var form = document.getElementById("formEntidade");
    form.action = '/' + proyecto +'/entidades/axenda/listadoAxendaEntidade.jsp';

    form.submit();   	    
}            

function instalacions(){   
    var form = document.getElementById("formEntidade");
    form.action = '/' + proyecto +'/entidades/instalacions/listadoInstalacionsEntidade.jsp';

    form.submit();   	    
}            

//*******************************************************************************************            
            
//********************* DATOS  ENTIDADE ***************************************
function buscarEntidade()
{	          
      var form = document.getElementById("formEntidades");
      form.target="_self"
      form.action = '/' + proyecto +'/entidades/listadoEntidades.jsp';                             
      form.submit();   	        
}

function ampliarEntidade(pId)
{	          
      var form = document.getElementById("formEntidades");
      form.target="_blank"
      form.action = '/' + proyecto +'/entidades/datosEntidade.jsp';

      document.getElementById("idEntidade").value = pId;

      form.submit();   	    
} 

//********************* DATOS  NOVIDADE ***************************************
function buscarNovidade()
{	          
      var form = document.getElementById("formEntidade");
      form.action = '/' + proyecto + '/entidades/novidades/listadoNovidadesEntidade.jsp';
      form.submit();   	        
}

function ampliarNovidade(pId)
{	          
      var form = document.getElementById("formEntidade");
      form.action = '/' + proyecto + '/entidades/novidades/datosNovidadeEntidade.jsp';

      //Asignamos el id que vamos a ampliar
      document.getElementById("idNovidade").value = pId;

      form.submit();   	    
}                     
//*****************************************************************************
//********************* DATOS AXENDA ***************************************
function buscarAxenda()
{	          
      var form = document.getElementById("formEntidade");
      form.action = '/' + proyecto + '/entidades/axenda/listadoAxendaEntidade.jsp';
      form.submit();   	        
}

function ampliarAxenda(pId)
{	          
      var form = document.getElementById("formEntidade");
      form.action = '/' + proyecto + '/entidades/axenda/datosAxendaEntidade.jsp';

      //Asignamos el id que vamos a ampliar
      document.getElementById("idAxenda").value = pId;

      form.submit();   	    
}                     
//*****************************************************************************
//********************* DATOS INSTALACION ***************************************
function buscarInstalacion()
{	          
      var form = document.getElementById("formEntidade");
      form.action = '/' + proyecto + '/entidades/instalacions/listadoInstalacionsEntidade.jsp';
      form.submit();   	        
}

function ampliarInstalacion(pId)
{	          
      var form = document.getElementById("formEntidade");
      form.action = '/' + proyecto + '/entidades/instalacions/datosInstalacionEntidade.jsp';

      //Asignamos el id que vamos a ampliar
      document.getElementById("idInstalacion").value = pId;

      form.submit();   	    
}                     
//*****************************************************************************


//***************************** PETICION **********************************
function peticionEntidade(pParametro)
{	     
    var form = document.getElementById("formEntidades");
    form.action = '/' + proyecto + '/entidades/peticionEntidade.jsp';
    form.submit();
}

function guardarPeticionEntidade(pParametro)
{	

    document.getElementById("opcion").value = 'PETICION';
    var form = document.getElementById("formDatosPeticionEntidade");
    form.action = '/' + proyecto + '/EntidadesServlet';

    form.submit();

}

function cancelarPeticionEntidade(pParametro){	

    var form = document.getElementById("formDatosPeticionEntidade");
    form.action = '/' + proyecto + '/entidades/listadoEntidades.jsp';

    form.submit();

} 
