var fDesc=new Array();
fDesc[0] = "trendingIT is a young and innovative start-up bringing some fresh air into the simulation community. Two years experience on advanced combustion modelling gives the software deep and enough insight into complex phenomena.
Find the data: budgets, experiments/research, historical data, information from more-or-less-common entities (persons, buildings, machines, locations, etc.)...Any spreadsheet containing relevant data to your business which might be defined as repetitive (equivalent information for different times, locations, objects, etc.)";
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 = '';
}
}