var fDesc=new Array(); fDesc[0] = "AQUA3D is a program developed to solve three-dimensional groundwater flow and transport problems using the Galerkin finite-element method. AQUA3D solves transient groundwater flow with in homogeneous and anisotropic flow conditions. Boundary conditions may be prescribed nodal head and prescribed flow as a function of time or head-dependent flow. AQUA3D also solves transient transport of contaminants and heat with convection, decay, adsorption and velocity-dependent dispersion. Boundary conditions may be either prescribed nodal concentration (temperature) or prescribed dispersive mass (heat) flux."; function tShowHide(id, show) { var s = document.getElementById("desc"); if ((s.innerHTML.length<=212 || show==1) && show!=2) { s.innerHTML = fDesc[id]; if (document.getElementById('m1')) document.getElementById('m1').style.display='none'; if (document.getElementById('m2')) document.getElementById('m2').style.display='none'; if (document.getElementById('more_txt')) document.getElementById('more_txt').style.display='inline'; } else { s.innerHTML = ''; } }