var fDesc=new Array();
fDesc[0] = "IBM ILOG CPLEX Optimization Studio Community Edition is an optimization model development toolkit for mathematical and constraint programming.
Main features:
- Problem size limited to 1000 variables and 1000 constraints.
- Develop and deploy optimization models quickly by using flexible interfaces and prebuilt deployment scenarios.
- Create real-world applications that can significantly improve business outcomes.";
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 = '';
}
}