function ampliarInstalacion(id)
{	          
      var form = document.getElementById("formListadoInstalaciones");
      form.action = '/DeporXestWebAldeaNova/instalaciones/datos.jsp';

      //Asignamos el id que vamos a ampliar
      document.getElementById("idInstalacion").value = id;

      form.submit();   	    
}   

function verActividades() {	          
      var form = document.getElementById("formInstalacion");
      form.action = '/DeporXestWebAldeaNova/actividades/index.jsp';

      form.submit();   	    
}

function verOcupacion(opcion) {	          
      var form = document.getElementById("formInstalacion");
      form.action = '/DeporXestWebAldeaNova/ocupaciones/index.jsp';

      document.getElementById("idOpcion").value = opcion;

      form.submit();   	    
}

