var fDesc=new Array();
fDesc[0] = "AQUAlibrium is a software package for systems containing water, hydrogen sulfide, carbon dioxide, and light hydrocarbons. It has a well-deserved reputation for being amongst the most accurate software for equilibrium calculations in these systems, especially for acid gas water systems.
Main features:
-New calculation routines
-Phase equilibrium calculations for mixtures that do not contain water
-Calculations of the enthalpy, heat capacity, viscosity, and thermal conductivity
-Win32 MDI Interface
-Project and file management of AQUAlibirum calculations
-Documentation of AQUAlibrium projects
-Exporting of the AQUAlibrium projects to other Windows applications";
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 = '';
}
}