var fDesc=new Array();
fDesc[0] = "E/One offers free software for hydraulic analysis of sewer systems that will use E/One grinder pumps. This version offers a more user-friendly interface and allows for both metric and imperial units of measure.
EONE Design Assistant supports Windows XP, Windows XP 64, Windows Vista, and Windows Vista 64.";
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 = '';
}
}