var fDesc=new Array();
fDesc[0] = "CTLWIN is the Windows version of the popular DOS based CTLynx software. CTLWIN is used to manage test programs and script files on the R+ and H+ line of Cirris cable testers.
With CTLWIN you can:
- Edit test programs to have custom file names instead of the default learned signatures.
- Change the default connector pin labels to match your cable documentation.
- Add LUA scripts and other custom components to your test programs. (Scripting sold separately)
- Modify your test files so they can be use with other Cirris tester models.
- Back-up the wirelist in your testers' memory to a Windows PC or other external storage device.
- Print reports with graphics showing the cable connectors and wiring diagrams.";
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 = '';
}
}