var fDesc=new Array();
fDesc[0] = "HLP Blender is a fully featured gas blending program based on real gas laws (Van der Waals equations). HLP Blender supports partial pressure and continuous blending systems, gas top offs and cylinder equalisation using both metric and imperial units.
HLP Blender runs on following operating systems: Windows 2000 Service Pack 3; Windows 98; Windows 98 Second Edition; Windows ME; Windows Server 2003; Windows XP Service Pack 2. In order to execute the program the .NET Framework v 2.0 has to be installed.";
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 = '';
}
}