var fDesc=new Array();
fDesc[0] = "DOEpack is an easy-to-use design of experiments software program that optimizes responses and identifies winning combinations.
DOEpack software will guide you through a step-by-step process for planning, designing, implementing, and interpreting effective experimental designs. The central, long-term benefits of this software include:
- Shaving months off your production schedules
- Saving your group money
- Producing higher quality products";
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 = '';
}
}