var fDesc=new Array();
fDesc[0] = "Cube Dynasim is the only scenario-based microscopic traffic simulation.
Cube Dynasim allows you to quickly and easily test any number of alternatives by managing all aspects of the simulation project, without redundancy, in a single file.
The parking extension allows you to accurately evaluate the largest and most complex parking structures with ease. The extension allows you to include ITS and other parking technologies to test the impacts of different types of information systems.";
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 = '';
}
}