var fDesc=new Array();
fDesc[0] = "This program allows non-busTRACE owners to view capture files created by busTRACE . This program only provides a small subset of the available features in the full retail version of busTRACE.
busTRACE provides a completely customizable interface. Our docking windows can be custom configured if you desire.
Main features:
- No CDB decoding, URB decoding, or any data structure decoding is included
- You cannot save any changes back to file
- The free reader cannot read busTRACE Capture Client output
-... and other significant limitations apply;";
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 = '';
}
}