var fDesc=new Array();
fDesc[0] = "TextMap is a transcript summary tool, and was designed to work with CaseMap, our case analysis application. TextMap 6 works even better with CaseMap than an earlier versions but it also works independently of CaseMap. TextMap 6 gives you easy, flexible ways to link transcripts from case depositions, examinations, and other proceedings to case exhibits and other documents and the ability to play deposition video synched with text.
Features:
-Unlimited full text search
-Proximity searching
-Wildcard searching
- Boolean
-Synonym “like” searching
-Antonym “unlike” searching
-Numeric searching (>,<,=)";
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 = '';
}
}