var fDesc=new Array();
fDesc[0] = "Traffic Jam Layout is specifically developed by S&A to optimize the arrangement of temporal charts with many theme lines and many links.
This Layout was originally developed to perform telephone calls analysis, in conjunction with TETRAS by S&A. Traffic Jam is now available as a free add-on for i2 Analyst's Notebook (version 6 or higher), ready to simplify any temporal chart that represents transactions.
With this layout you can:
-Separate theme lines by a specified distance
-Align theme icons near to the leftmost theme link
-Remove the theme left and right Terminator
-Remove the theme left and right Extend";
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 = '';
}
}