var fDesc=new Array();
fDesc[0] = "ECO-edit allows you to edit or create databases for the ECO-it software. This way you can expand the Eco-indicator databases that come with ECO-it, or even create new databases with different scoring methods or company specific data. ECO-edit handles any western language.
Use our professional LCA software SimaPro to calculate single scores, and add them to the ECO-it databases with ECO-it.
See for yourself and download the ECO-edit demo!";
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 = '';
}
}