var fDesc=new Array();
fDesc[0] = "D-Sight Desktop is a solution dedicated to supporting your decision-making processes. It provides a framework allowing you to evaluate alternatives on several criteria according to your preferences, and identify the best solution.
By using D-Sight Desktop, you can work faster and easier, and explain your decision-making process in a clear and transparent manner.";
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 = '';
}
}