var fDesc=new Array();
fDesc[0] = "HySS is a program that can be used to perform 2 distinct functions.
Titration simulation. A model is specified by defining a set of equilibrium constants
bpq.. = [ApBq..]/([A]p[[B]q..)
A titration is simulated by specifying a set of titration conditions and calculating the concentrations of each complex species as the titration proceeds. The results are shown graphically.
Calculation of species' concentrations. This requires a model and a set of conditions such as a pH range. Again the result is a plot of concentrations, as above.";
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 = '';
}
}