var fDesc=new Array();
fDesc[0] = "StenoCAT 32 is full featured CAT software available at a reasonable annual subscription rate, which includes software, unlimited technical support, and updates for one year.
Main Features:
- Writer Compatibility
- Smart Briefs
- Seating Chart
- PDF with Digital Signatures
- Address Book
- Internet Search
- Smart Keys
- Wireless Ready
- Synchronize Browsers
- InSync - Audio Synchronization
- Larger Fonts
- Support & Software
- Compatible with Windows 7";
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 = '';
}
}