var fDesc=new Array();
fDesc[0] = "A tool for configuring production modules and for generating all or partial feasible alternatives based on specified constraints .
Designed and developed to meet requirements specified by Ford's European Research Center.
Main Features:
- handles uncertainties/fuzziness of data
- configures production modules
- sets and fulfills multiple goal criteria
- generates all or partial feasible solutions
- provides comprehensive information
- provides interactive environment
- works in distributed environment
- maintains consistency of the resulting networks";
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 = '';
}
}