var fDesc=new Array();
fDesc[0] = "TMS Async32 is a communications package containing components which provide access to the serial ports under Windows. The event-driven architecture provides the highest possible performance and allows all the tools to run in the background.
-a proven concept for over 6 years.
-advanced class object structure.
-Advanced but easy to use design interface.
-optimized even t-driven architecture.
-provides the highest possible performance.
-supports all important transfer protocols.
-components to build advanced comport servers.
-easy to use with any type of serial hardware.";
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 = '';
}
}