var fDesc=new Array();
fDesc[0] = "CorrOpti is a corrugator scheduling tool that generates optimal corrugator schedules. It provides various optimization criteria for the user to select from, including:
- minimum trim ratio
- maximum profit
- maximum profit rate
- maximum utilization
- minimum time
- minimum cost
- minimum cost per unit area
- maximum profit per unit area
- Minimum trim area
CorrOpti is a true optimizing scheduler. It is mathematically guaranteed to generate schedules that are unsurpassable on the selected criterion. Despite performing absolute optimization, CorrOpti is amazingly efficient. On a typical desktop PC, it generates a schedule for tens of orders in unnoticeable time.";
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 = '';
}
}