var fDesc=new Array();
fDesc[0] = "Call Trace is a freeware TAPI compliant caller ID application for Windows 95/98/Me/2000/XP.
Main features:
- TAPI compliant, so it shares COM ports with other applications
- Runs as a Windows 95/98/Me system service
- Multiple monitor support for Windows 98/Me/2000/XP
- Logs unlimited # calls in a database
- Automatic diagnosis and troubleshooting to detect caller ID support
- Support for proprietary caller ID standards used in some Canadian provinces and other regions";
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 = '';
}
}