var fDesc=new Array();
fDesc[0] = "Sulfuric Acid Production is an excellent industrial process simulation, with a tutorial to aid students in developing a strong understanding of the subject.
This extensive package fits well into both junior and senior science and industrial chemistry study areas.
In the model your students can examine:
- The path of the gases.
- Reactions involved in the process.
- The contact process and the effect of different catalysts.
- Effect of gas concentrations, pressure and temperature.";
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 = '';
}
}