var fDesc=new Array(); fDesc[0] = "STIMS Cutter is a Windows program (for both Win32 and x64 versions), which allows the user to optimize the parameters of linear cutting. It suggests unique algorithm to solve problem known as 1D Cutting Stock Problem or as Bin Packing Problem. We really hope that our program will help not only with conserving materials but also with saving time for engineers as well as for manufacturing."; 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 = ''; } }